Initial Release - v1.0.0

This commit is contained in:
Adi Chirilov
2020-08-21 11:54:03 +03:00
parent e3e8c2db6e
commit 8295e32fc2
238 changed files with 42591 additions and 1 deletions

11
Dockerfile Normal file
View File

@ -0,0 +1,11 @@
FROM python:3.6
ENV FLASK_APP run.py
COPY run.py gunicorn-cfg.py requirements.txt config.py .env ./
COPY app app
RUN pip install -r requirements.txt
EXPOSE 5005
CMD ["gunicorn", "--config", "gunicorn-cfg.py", "run:app"]