From a100b0faa018936b646a7d8e6b8010e278805be4 Mon Sep 17 00:00:00 2001 From: Yuto Takano Date: Thu, 29 Feb 2024 02:21:06 +0000 Subject: [PATCH] Add missing Dockerfile dependencies for curl and jq --- Dockerfile | 3 +++ 1 file changed, 3 insertions(+) diff --git a/Dockerfile b/Dockerfile index 6653154..6ac53ac 100644 --- a/Dockerfile +++ b/Dockerfile @@ -4,6 +4,9 @@ FROM alpine COPY ./notify-wikijs-recent-updates.sh /usr/local/bin/notify-wikijs-recent-updates.sh RUN chmod +x /usr/local/bin/notify-wikijs-recent-updates.sh +# Install curl and jq +RUN apk add --no-cache curl jq + # Run the cron every 5 minutes RUN echo '*/5 * * * * /usr/local/bin/notify-wikijs-recent-updates.sh' > /etc/crontabs/root