github.io/assets/apprentice/docker/basic/production.dockerfile

7 lines
94 B
Plaintext
Raw Normal View History

2022-08-08 11:54:03 +00:00
FROM python:slim
COPY ./ .
RUN pip install -r ./requirements.txt
CMD ["python", "./run.py"]