From 0b7c4cc78eeceb4f85e87ed3305f1c04de59d95b Mon Sep 17 00:00:00 2001 From: David Boreham Date: Sun, 6 Aug 2023 20:33:55 -0600 Subject: [PATCH] Add wget package for healthcheck --- 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 . -- 2.45.2