Update Dockerfile

Signed-off-by: Kjeld Schouten <info@kjeldschouten.nl>
This commit is contained in:
Kjeld Schouten
2025-08-07 21:07:00 +02:00
committed by GitHub
parent 973c533d74
commit 6b1c6b5299

View File

@@ -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"