flake8-bundle/Dockerfile
Lauri Võsandi a1cca0363f
All checks were successful
continuous-integration/drone Build is passing
Work around 'choice' is not callable error in v6
2022-12-15 06:59:48 +02:00

7 lines
198 B
Docker

FROM python:3-alpine
RUN pip install flake8==5.0.4 flake8-typing-imports flake8-quotes
ADD .flake8 /config/flake8.ini
WORKDIR /apps
ENTRYPOINT ["flake8", "--config", "/config/flake8.ini"]
CMD ["."]