Initial commit
continuous-integration/drone Build is passing

This commit is contained in:
2022-08-03 07:37:23 +03:00
commit 342c6aec02
4 changed files with 38 additions and 0 deletions
+6
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 ["."]