new flake on production

This commit is contained in:
Gunther Weissenbaeck 2024-11-17 11:16:43 +01:00
parent d32780b0c3
commit 16189c85dc

View file

@ -17,10 +17,10 @@ RUN apt-get update && \
apt-get install -y --no-install-recommends gcc apt-get install -y --no-install-recommends gcc
# lint # lint
RUN pip install --upgrade pip # RUN pip install --upgrade pip
RUN pip install flake8==6.0.0 # RUN pip install flake8==6.0.0
COPY . . # COPY . .
RUN flake8 --ignore=E501,F401 . # RUN flake8 --ignore=E501,F401 .
# install python dependencies # install python dependencies
COPY requirements.txt . COPY requirements.txt .