We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 877c415 commit 43d6a98Copy full SHA for 43d6a98
build/Dockerfile.nginx
@@ -5,6 +5,9 @@ FROM scratch AS nginx-files
5
ADD --link --chown=101:1001 https://cs.nginx.com/static/keys/nginx_signing.rsa.pub nginx_signing.rsa.pub
6
7
FROM nginx:1.29.1-alpine-otel
8
+# the following apk update and add are to address CVE-2025-59375 and CVE-2025-8961/CVE-2025-9165 respectively,
9
+# once a new base image is available with these package updates, they can be removed.
10
+RUN apk update && apk add --no-cache 'libexpat>=2.7.2-r0' 'tiff>=4.7.1-r0'
11
12
# renovate: datasource=github-tags depName=nginx/agent
13
ARG NGINX_AGENT_VERSION=v3.3.1
0 commit comments