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"]