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-14 21:45:54 -04:00

9 lines
129 B
Docker

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