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
This commit is contained in:
Chris Lu
2025-12-10 12:54:20 -08:00
committed by GitHub
parent 2188d1ccc5
commit e225940202
4 changed files with 4 additions and 3 deletions

View File

@@ -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/*