From 874b9aebd9ec4f4a63b47be7ccdeb9d130f4d427 Mon Sep 17 00:00:00 2001 From: snyk-bot Date: Thu, 30 Oct 2025 10:29:59 +0000 Subject: [PATCH] fix: Dockerfile to reduce vulnerabilities The following vulnerabilities are fixed with an upgrade: - https://snyk.io/vuln/SNYK-ALPINE322-PCRE2-13637025 --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 60fce0c2..359e6cee 100644 --- a/Dockerfile +++ b/Dockerfile @@ -32,6 +32,6 @@ RUN mkdocs build # Extract the static content from the build # and use a nginx image to serve the content -FROM nginx:alpine +FROM nginx:1.29.3-alpine3.22 COPY --from=app-zip-creator /app.zip /usr/share/nginx/html/assets/app.zip COPY --from=build /app/site /usr/share/nginx/html