mercatus/Dockerfile

8 lines
183 B
Docker
Raw Normal View History

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