From 62854c91d350fc259d3f7088200af3a73b2f8f23 Mon Sep 17 00:00:00 2001 From: Xueshan Feng Date: Sun, 4 Aug 2024 03:43:07 -0700 Subject: [PATCH] =?UTF-8?q?=F0=9F=90=B3=20chore:=20Update=20Dockerfile.mul?= =?UTF-8?q?ti=20(#3528)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Upgrade nginx:1.21.1-alpine to nginx:1.27.0-alpine. Reduce Vulnerabilities report from 59 to 7 by Google image scan. --- Dockerfile.multi | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile.multi b/Dockerfile.multi index aba396bd46..d8fe9d951f 100644 --- a/Dockerfile.multi +++ b/Dockerfile.multi @@ -38,6 +38,6 @@ ENV HOST=0.0.0.0 CMD ["node", "server/index.js"] # Nginx setup -FROM nginx:1.21.1-alpine AS prod-stage +FROM nginx:1.27.0-alpine AS prod-stage COPY ./client/nginx.conf /etc/nginx/conf.d/default.conf CMD ["nginx", "-g", "daemon off;"]