mercatus/Dockerfile

8 lines
170 B
Docker
Raw Normal View History

2019-06-17 19:50:39 +02:00
FROM python:3.7-slim
2019-06-17 10:09:38 +02:00
WORKDIR /app
2019-06-17 19:50:39 +02:00
COPY requirements.txt .
2019-06-17 10:09:38 +02:00
RUN pip install -r requirements.txt && rm -rf /root/.cache
2019-06-17 19:50:39 +02:00
COPY src .
CMD ["python", "-u", "/app/Mercatus.py"]