Initial commit
All checks were successful
continuous-integration/drone Build is passing

This commit is contained in:
2022-08-03 07:30:27 +03:00
commit 342c6aec02
4 changed files with 38 additions and 0 deletions

6
Dockerfile Normal file
View File

@@ -0,0 +1,6 @@
FROM python:3-alpine
RUN pip install flake8 flake8-typing-imports flake8-quotes
ADD .flake8 /config/flake8.ini
WORKDIR /apps
ENTRYPOINT ["flake8", "--config", "/config/flake8.ini"]
CMD ["."]