From edca20c7aceb0f46cebaea7d318cd3caa412b184 Mon Sep 17 00:00:00 2001 From: Leonard Excoffier <48970393+excoffierleonard@users.noreply.github.com> Date: Wed, 4 Sep 2024 22:14:06 -0400 Subject: [PATCH] fix: fixed dockerfile synthax, need to fix array fetching in the script. --- DOCKERFILE | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/DOCKERFILE b/DOCKERFILE index 109f8d8..51e0917 100644 --- a/DOCKERFILE +++ b/DOCKERFILE @@ -1,6 +1,6 @@ FROM debian -ENV WEBSITES=("google.com" "yahoo.com") +ENV WEBSITES='("google.com" "yahoo.com")' ENV WEBHOOK_URL="" @@ -9,7 +9,7 @@ ENV DISCORD_ID="" RUN apt update && apt install -y \ bash \ curl \ - cron \ + cron COPY ./start.sh /start.sh