This commit is contained in:
parent
9a8399544b
commit
3f8f9ff8a0
@ -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"]
|
||||
|
Loading…
Reference in New Issue
Block a user