From f3a3c7ffc82d6a199d9bfc2240a3bc6d02cb95e7 Mon Sep 17 00:00:00 2001 From: snyk-bot Date: Sun, 17 Mar 2024 20:38:37 +0000 Subject: [PATCH] fix: Dockerfile to reduce vulnerabilities The following vulnerabilities are fixed with an upgrade: - https://snyk.io/vuln/SNYK-ALPINE318-EXPAT-6446356 --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 60fce0c2c..957e62c88 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.25.4-alpine3.18 COPY --from=app-zip-creator /app.zip /usr/share/nginx/html/assets/app.zip COPY --from=build /app/site /usr/share/nginx/html