Inverse-Rezeptsuche/app/Dockerfile

8 lines
137 B
Docker
Raw Normal View History

2020-04-10 14:14:34 +00:00
FROM python
COPY ./requirements.txt /app/requirements.txt
2020-04-10 14:14:34 +00:00
RUN pip install -r /app/requirements.txt
COPY ./ /app
2020-04-10 14:14:34 +00:00
CMD python /app/run.py