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 09:53:50 -04:00

12 lines
227 B
Docker

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