From 6b1c6b5299fdf802e62f846ff82cfca4111e029c Mon Sep 17 00:00:00 2001 From: Kjeld Schouten Date: Thu, 7 Aug 2025 21:07:00 +0200 Subject: [PATCH] Update Dockerfile Signed-off-by: Kjeld Schouten --- containers/apps/bfics/Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/containers/apps/bfics/Dockerfile b/containers/apps/bfics/Dockerfile index b5e2e80655b..9d8f0eed9d4 100644 --- a/containers/apps/bfics/Dockerfile +++ b/containers/apps/bfics/Dockerfile @@ -23,7 +23,7 @@ RUN apk add --no-cache bash curl busybox-suid && \ RUN crontab /app/crontab.txt # Start cron and HTTP server -CMD sh -c "crond -f -L /dev/stdout & python3 -m http.server 8000 --directory /app" +CMD sh -c "python3 /app/balfolk_ical.py && crond -f -L /dev/stdout & python3 -m http.server 8000 --directory /app" LABEL "org.opencontainers.image.source"="https://github.com/truecharts/containers"