From e5fac5694016f1a3f4d469d1c4239ec67bb8b214 Mon Sep 17 00:00:00 2001 From: snyk-bot Date: Fri, 15 Nov 2024 02:53:35 +0000 Subject: [PATCH] fix: Dockerfile to reduce vulnerabilities The following vulnerabilities are fixed with an upgrade: - https://snyk.io/vuln/SNYK-ALPINE320-CURL-7931858 - https://snyk.io/vuln/SNYK-ALPINE320-CURL-8348469 - https://snyk.io/vuln/SNYK-ALPINE320-CURL-8348469 - https://snyk.io/vuln/SNYK-ALPINE320-OPENSSL-8235201 - https://snyk.io/vuln/SNYK-ALPINE320-OPENSSL-8235201 --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index f617d7912..c62253ce1 100644 --- a/Dockerfile +++ b/Dockerfile @@ -7,7 +7,7 @@ COPY . . RUN npm run build # Production stage -FROM nginx:stable-alpine as production-stage +FROM nginx:1.26.2-alpine3.20 as production-stage COPY --from=build-stage /app/dist /usr/share/nginx/html EXPOSE 80 CMD ["nginx", "-g", "daemon off;"] \ No newline at end of file