From edb1f9dc7dace894340bb351bdbf1409d4f78afe Mon Sep 17 00:00:00 2001 From: snyk-bot Date: Wed, 29 Oct 2025 11:52:47 +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 c32cd29..12523b8 100644 --- a/Dockerfile +++ b/Dockerfile @@ -8,7 +8,7 @@ COPY . . RUN npm run static # Production image with nginx to serve static files -FROM nginx:alpine AS runner +FROM nginx:1.29.3-alpine3.22 AS runner COPY --from=builder /app/out/ /usr/share/nginx/html COPY nginx.conf /etc/nginx/nginx.conf EXPOSE 3000