mercatus/Dockerfile

8 lines
170 B
Docker
Raw Normal View History

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