make it kubernetes friendly
Some checks failed
continuous-integration/drone/push Build is failing

This commit is contained in:
2020-12-29 21:43:31 +01:00
parent dd1fd1c80f
commit 189326b30f
12 changed files with 145 additions and 28 deletions

16
Dockerfile Normal file
View File

@ -0,0 +1,16 @@
FROM python:3-slim
ENV TZ Europe/Budapest
RUN ln -snf /usr/share/zoneinfo/$TZ /etc/localtime && echo $TZ > /etc/timezone
WORKDIR /app
COPY requirements.txt ./
RUN pip install --no-cache-dir -r requirements.txt && rm -rf requirements.txt
COPY ./geogame .
EXPOSE 8080
ENTRYPOINT ["gunicorn", "-b", "0.0.0.0:8080", "--workers", "4", "--threads", "4", "wsgi:application"]