From 767fe6d6e6055e7ac4ff149e0e1af66a1f015658 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Nu=C5=A1a=20Puk=C5=A1i=C4=8D?= Date: Tue, 28 Oct 2025 08:35:12 +0100 Subject: [PATCH] Update cron --- docker/cron/Dockerfile | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/docker/cron/Dockerfile b/docker/cron/Dockerfile index 59c3a5e..9ffe07d 100644 --- a/docker/cron/Dockerfile +++ b/docker/cron/Dockerfile @@ -24,10 +24,14 @@ WORKDIR /var/www/html # Copy cron and script COPY crontab /etc/cron.d/app-cron COPY index_articles.sh /index_articles.sh +COPY article_discovery.sh /article_discovery.sh +COPY media_discovery.sh /media_discovery.sh # Set permissions RUN chmod 0644 /etc/cron.d/app-cron && \ - chmod +x /index_articles.sh + chmod +x /index_articles.sh && \ + chmod +x /article_discovery.sh && \ + chmod +x /media_discovery.sh # Apply cron job RUN crontab /etc/cron.d/app-cron