changedetection.io/Dockerfile

10 wiersze
191 B
Docker
Czysty Zwykły widok Historia

2021-01-28 13:45:30 +00:00
FROM python:3.8-slim
2021-01-27 19:51:55 +00:00
COPY requirements.txt /tmp/requirements.txt
RUN pip3 install -r /tmp/requirements.txt
# So that it can find the certs
WORKDIR /app
CMD [ "python", "/app/backend.py" ]