From a1285f22380584ef55bdf86f9c22f79bc5fb92cd Mon Sep 17 00:00:00 2001 From: jeanluc Date: Sat, 9 Nov 2024 10:58:15 +0100 Subject: [PATCH] Don't force the DATASTORE_PATH This got lost during a rebase, it's not necessary anymore since the env var is set inside the container by default and changedetection respects it. --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 28a7946c..5dfce593 100644 --- a/Dockerfile +++ b/Dockerfile @@ -90,4 +90,4 @@ ENV LOGGER_LEVEL "$LOGGER_LEVEL" WORKDIR /app ENTRYPOINT ["/app/docker-entrypoint.sh"] -CMD ["python", "./changedetection.py", "-d", "/datastore"] +CMD ["python", "/app/changedetection.py"]