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

10 lines
141 B
Docker

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