github.io/assets/apprentice/docker/basic/local-dev.dockerfile

7 lines
110 B
Plaintext
Raw Permalink Normal View History

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