init repo
Some checks reported errors
continuous-integration/drone/push Build was killed

This commit is contained in:
2020-04-17 16:35:55 +02:00
parent 3a2171b002
commit 8249fbe8d3
10 changed files with 367 additions and 36 deletions

16
Dockerfile Normal file
View File

@ -0,0 +1,16 @@
FROM python:3.8
WORKDIR /app
COPY requirements.txt .
ENV PIP_NO_CACHE_DIR=true
ENV TZ Europe/Budapest
RUN ln -snf /usr/share/zoneinfo/$TZ /etc/localtime && echo $TZ > /etc/timezone
RUN pip3 install -r requirements.txt
COPY . ./
EXPOSE 80
CMD ["gunicorn", "-b", "0.0.0.0:80", "app:app"]