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

9 lines
129 B
Docker
Raw Normal View History

2020-10-14 21:45:54 -04:00
FROM python:3.8
ADD . /root/
WORKDIR /root
RUN pip install -r requirements.txt
CMD [ "gunicorn", "--chdir", "src", "app:app"]