9 lines
129 B
Docker
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"] |