From 040d6002e9751277d5d70977a7f0d01b48b88e21 Mon Sep 17 00:00:00 2001 From: snyk-bot Date: Tue, 12 Oct 2021 21:57:27 +0000 Subject: [PATCH] fix: Frontend/Dockerfile to reduce vulnerabilities The following vulnerabilities are fixed with an upgrade: - https://snyk.io/vuln/SNYK-DEBIAN10-CURL-608200 - https://snyk.io/vuln/SNYK-DEBIAN10-LIBGCRYPT20-1297893 - https://snyk.io/vuln/SNYK-DEBIAN10-OPENSSL-1075326 - https://snyk.io/vuln/SNYK-DEBIAN10-OPENSSL-1569403 - https://snyk.io/vuln/SNYK-DEBIAN10-OPENSSL-1569406 --- Frontend/Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Frontend/Dockerfile b/Frontend/Dockerfile index d49f53e..c85aeb1 100644 --- a/Frontend/Dockerfile +++ b/Frontend/Dockerfile @@ -4,7 +4,7 @@ ADD . /front/ RUN npm install --unsafe-perm RUN npm run build -FROM nginx:1.19.0 +FROM nginx:1.20 COPY --from=builder /front/public /usr/share/nginx/html COPY ./nginx.conf /etc/nginx/conf.d/default.conf