This repository has been archived on 2022-09-21. You can view files and clone it. You cannot open issues or pull requests or push a commit.
Files
qbbuzzer/Dockerfile
T
2020-10-15 10:42:59 -04:00

12 lines
242 B
Docker

FROM python:3.8
ADD . /root/
WORKDIR /root/
RUN pip install -r requirements.txt
WORKDIR /root/
# CMD [ "python", "app.py" ]
CMD [ "gunicorn", "-b", "0.0.0.0:25565","--workers", "3", "--timeout", "86400", "-k", "eventlet", "src.app:app" ]