This repository has been archived on 2022-09-21. You can view files and clone it, but cannot push or open issues or pull requests.
qbbuzzer/Dockerfile

12 lines
242 B
Docker
Raw Permalink Normal View History

2020-10-14 21:45:54 -04:00
FROM python:3.8
ADD . /root/
2020-10-14 23:11:00 -04:00
WORKDIR /root/
2020-10-14 21:45:54 -04:00
RUN pip install -r requirements.txt
2020-10-15 10:42:59 -04:00
WORKDIR /root/
2020-10-14 23:11:00 -04:00
2020-10-15 10:42:59 -04:00
# CMD [ "python", "app.py" ]
CMD [ "gunicorn", "-b", "0.0.0.0:25565","--workers", "3", "--timeout", "86400", "-k", "eventlet", "src.app:app" ]