From 2a59d6c0b7bbe47943b97f66a45b260d9daccc71 Mon Sep 17 00:00:00 2001 From: snyk-bot Date: Wed, 24 Jul 2024 02:55:53 +0000 Subject: [PATCH] fix: Dockerfile.production to reduce vulnerabilities The following vulnerabilities are fixed with an upgrade: - https://snyk.io/vuln/SNYK-ALPINE319-OPENSSL-7413523 - https://snyk.io/vuln/SNYK-ALPINE319-OPENSSL-7413523 - https://snyk.io/vuln/SNYK-ALPINE319-OPENSSL-7413527 - https://snyk.io/vuln/SNYK-ALPINE319-OPENSSL-7413527 --- Dockerfile.production | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile.production b/Dockerfile.production index 9720adfe..651a2b46 100644 --- a/Dockerfile.production +++ b/Dockerfile.production @@ -26,7 +26,7 @@ ENV TESTNET_DOMAIN=${TESTNET_DOMAIN} RUN npm run build # production env -FROM nginx:stable-alpine +FROM nginx:1.26.1-alpine3.19 COPY nginx.conf /etc/nginx/conf.d/default.conf COPY --from=build /app/dist /usr/share/nginx/html EXPOSE 80