From 620ab66c269d8f654e8470ac378001a2adbec6ef Mon Sep 17 00:00:00 2001 From: "socrates@bakunin" Date: Fri, 23 Feb 2024 23:57:17 +0100 Subject: [PATCH] added curl to Dockerfile --- Dockerfile | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index fec306e..da8d980 100644 --- a/Dockerfile +++ b/Dockerfile @@ -7,6 +7,7 @@ RUN apt update \ && apt -y install \ cron \ tzdata \ + curl \ && rm -rf /var/lib/apt/lists/* RUN cp -r -f /usr/share/zoneinfo/Europe/Berlin /etc/localtime @@ -18,4 +19,4 @@ COPY crontab /app/crontab RUN chmod +x /app/run.sh RUN chmod +x /app/wohn-hh-checker.sh -CMD [ "/app/run.sh" ] \ No newline at end of file +CMD [ "/app/run.sh" ]