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
# lint
RUN pip install --upgrade pip
RUN pip install flake8==6.0.0
COPY . .
RUN flake8 --ignore=E501,F401 .
# RUN pip install --upgrade pip
# RUN pip install flake8==6.0.0
# COPY . .
# RUN flake8 --ignore=E501,F401 .
# install python dependencies
COPY requirements.txt .