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 6ac6832 commit a74c28fCopy full SHA for a74c28f
build/Dockerfile.nginx
@@ -6,6 +6,10 @@ ADD --link --chown=101:1001 https://cs.nginx.com/static/keys/nginx_signing.rsa.p
6
7
FROM nginx:1.29.2-alpine-otel
8
9
+# the following apk update and add are to address CVE-2025-58050, CVE-2025-6021/CVE-2025-49795/CVE-2025-49794/CVE-2025-49796 respectively.
10
+# once a new base image is available with these package updates, they can be removed.
11
+RUN apk update && apk add --no-cache 'pcre2>=10.46-r0' 'libxml2>=2.13.9-r0'
12
+
13
# renovate: datasource=github-tags depName=nginx/agent
14
ARG NGINX_AGENT_VERSION=v3.3.2
15
ARG NJS_DIR
0 commit comments