changedetection.io/backend/dev-docker/Dockerfile

17 wiersze
345 B
Docker
Czysty Zwykły widok Historia

2021-01-29 13:45:00 +00:00
FROM python:3.8-slim
# https://stackoverflow.com/questions/58701233/docker-logs-erroneously-appears-empty-until-container-stops
ENV PYTHONUNBUFFERED=1
2021-02-03 08:28:52 +00:00
# Should be mounted from docker-compose-development.yml
RUN pip3 install -r /requirements.txt
2021-01-29 13:45:00 +00:00
RUN [ ! -d "/datastore" ] && mkdir /datastore
2021-01-27 11:39:46 +00:00
COPY sleep.py /
CMD [ "python", "/sleep.py" ]