From 7ba82aa50925abcef6e3585916cd8bf70a0cd09d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jan-Ole=20Hu=CC=88bner?= Date: Sat, 17 Aug 2024 21:46:40 +0200 Subject: [PATCH] fix: wrong path --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 926b721..ff0a035 100644 --- a/Dockerfile +++ b/Dockerfile @@ -11,7 +11,7 @@ ENV PYTHONIOENCODING=utf-8 ADD . / -RUN echo "*/15 * * * * python3 ./get_price.py >> /var/log/cron.log 2>&1" > /etc/cron.d/get_price +RUN echo "*/15 * * * * python3 /get_price.py >> /var/log/cron.log 2>&1" > /etc/cron.d/get_price RUN chmod 0644 /etc/cron.d/get_price