change some things
continuous-integration/drone/push Build is passing Details

This commit is contained in:
Torma Kristóf 2020-12-29 22:03:14 +01:00
parent 9a8399544b
commit 3f8f9ff8a0
1 changed files with 4 additions and 2 deletions

View File

@ -3,7 +3,7 @@ FROM python:3-slim
ENV TZ Europe/Budapest
RUN ln -snf /usr/share/zoneinfo/$TZ /etc/localtime && echo $TZ > /etc/timezone
WORKDIR /app
WORKDIR /app/geogame
COPY requirements.txt ./
@ -13,4 +13,6 @@ COPY ./geogame .
EXPOSE 8080
ENTRYPOINT ["gunicorn", "-b", "0.0.0.0:8080", "--workers", "4", "--threads", "4", "wsgi:application"]
WORKDIR /app
ENTRYPOINT ["gunicorn", "-b", "0.0.0.0:8080", "--workers", "4", "--threads", "4", "geogame.wsgi:application"]