There was an error while loading. Please reload this page.
1 parent a50ca10 commit 08885c1Copy full SHA for 08885c1
1 file changed
Dockerfile
@@ -166,7 +166,10 @@ ENV SOURCEBOT_LOG_LEVEL=info
166
# ENV SOURCEBOT_TELEMETRY_DISABLED=1
167
168
# Configure dependencies
169
-RUN apk add --no-cache git ca-certificates bind-tools tini jansson wget supervisor uuidgen curl perl jq openssl util-linux unzip && \
+# curl/libcurl pinned to >=8.20.0-r0 to address CVE-2026-6429 (credential leak
170
+# via reused proxy connection during HTTP redirects). The pin also busts the
171
+# build-cache layer so `apk upgrade` re-runs and pulls the patched packages.
172
+RUN apk add --no-cache git ca-certificates bind-tools tini jansson wget supervisor uuidgen "curl>=8.20.0-r0" perl jq openssl util-linux unzip && \
173
apk upgrade --no-cache
174
175
# Remove npm (unused — we use Yarn). The Node.js base image bundles npm
0 commit comments