From d30e746599c4dc6f79946d5f849259ee675819cb Mon Sep 17 00:00:00 2001 From: David Boreham Date: Sun, 6 Aug 2023 20:46:24 -0600 Subject: [PATCH] Add wget package for healthcheck (#487) --- app/data/container-build/cerc-lighthouse/Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/data/container-build/cerc-lighthouse/Dockerfile b/app/data/container-build/cerc-lighthouse/Dockerfile index 2cd95ad4..a5559f68 100644 --- a/app/data/container-build/cerc-lighthouse/Dockerfile +++ b/app/data/container-build/cerc-lighthouse/Dockerfile @@ -1,7 +1,7 @@ ARG TAG_SUFFIX="-modern" FROM sigp/lighthouse:v4.3.0${TAG_SUFFIX} -RUN apt-get update; apt-get install bash netcat curl less jq -y; +RUN apt-get update; apt-get install bash netcat curl less jq wget -y; WORKDIR /root/ ADD start-lighthouse.sh .