From 3d0ad0ed84676177845f111c8329a6c60128ca89 Mon Sep 17 00:00:00 2001 From: Enrico Ghidoni Date: Mon, 15 Jul 2024 01:27:10 +0200 Subject: [PATCH] Change Docker entrypoint to owlbot.py --- Dockerfile | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/Dockerfile b/Dockerfile index 1bba24a..ddbd80b 100644 --- a/Dockerfile +++ b/Dockerfile @@ -5,9 +5,8 @@ WORKDIR /owlbot RUN apk add --no-cache python3 py3-pip RUN pip install --break-system-packages -r requirements.txt -RUN crontab crontab.txt # Install tzdata to switch timezone on deployment RUN apk add --no-cache tzdata -CMD ["crond", "-f"] \ No newline at end of file +CMD ["python", "owlbot.py"] \ No newline at end of file