mercatus/Dockerfile

9 lines
161 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
2019-12-23 10:45:38 +01:00
WORKDIR /app
COPY requirements.txt .
RUN pip install --no-cache-dir -r requirements.txt
2019-06-17 19:50:39 +02:00
COPY src .
2019-12-23 10:45:38 +01:00
CMD ["python", "-u", "/app/mercatus.py"]