aboutsummaryrefslogtreecommitdiff
path: root/docker/Dockerfile.foundationdb_large
diff options
context:
space:
mode:
authorChris Lu <chrislusf@users.noreply.github.com>2025-12-10 12:54:20 -0800
committerGitHub <noreply@github.com>2025-12-10 12:54:20 -0800
commite2259402020204ddb940cc26a12367ff5a685c97 (patch)
tree04bb622f206e0c763ce2561e9cad7f78785fbfa1 /docker/Dockerfile.foundationdb_large
parent2188d1ccc5a32f884d876ef9a997dae3a727375e (diff)
downloadseaweedfs-e2259402020204ddb940cc26a12367ff5a685c97.tar.xz
seaweedfs-e2259402020204ddb940cc26a12367ff5a685c97.zip
docker: add curl for HTTPS healthcheck support (#7709)
Alpine's busybox wget does not support --ca-cert, --certificate, and --private-key options required for HTTPS healthchecks with client certificate authentication. Adding curl to Docker images enables proper HTTPS healthchecks. Fixes #7707
Diffstat (limited to 'docker/Dockerfile.foundationdb_large')
-rw-r--r--docker/Dockerfile.foundationdb_large1
1 files changed, 1 insertions, 0 deletions
diff --git a/docker/Dockerfile.foundationdb_large b/docker/Dockerfile.foundationdb_large
index 8a79498f7..6ec702700 100644
--- a/docker/Dockerfile.foundationdb_large
+++ b/docker/Dockerfile.foundationdb_large
@@ -77,6 +77,7 @@ LABEL author="Chris Lu"
RUN apt-get update && \
apt-get install -y --no-install-recommends \
ca-certificates \
+ curl \
fuse \
wget && \
rm -rf /var/lib/apt/lists/*