Files
EuropaParkCheck/Dockerfile
2019-09-05 08:16:37 +02:00

8 lines
168 B
Docker

FROM python:3.7
ENV DB_FILE=checks.json
WORKDIR /app
COPY requirements.txt .
RUN python -m pip install -r requirements.txt
COPY check.py .
CMD ["python", "./check.py"]