From 0de85f8d92c085e0a2faec554cabbe81675f255a Mon Sep 17 00:00:00 2001 From: snyk-bot Date: Fri, 11 Aug 2023 15:10:31 +0000 Subject: [PATCH] fix: Dockerfile to reduce vulnerabilities The following vulnerabilities are fixed with an upgrade: - https://snyk.io/vuln/SNYK-ALPINE317-OPENSSL-3368755 - https://snyk.io/vuln/SNYK-ALPINE317-OPENSSL-3368755 - https://snyk.io/vuln/SNYK-ALPINE317-OPENSSL-5661570 - https://snyk.io/vuln/SNYK-ALPINE317-OPENSSL-5661570 - https://snyk.io/vuln/SNYK-ALPINE317-OPENSSL-5821141 --- Dockerfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Dockerfile b/Dockerfile index 040fc16fab52..53ab09f2ba97 100644 --- a/Dockerfile +++ b/Dockerfile @@ -5,7 +5,7 @@ # -------------------------------------------------------------------------------- # BASE IMAGE # -------------------------------------------------------------------------------- -FROM node:16.19.1-alpine as base +FROM node:16.20.2-alpine as base RUN apk add --no-cache make g++ git @@ -61,7 +61,7 @@ RUN npm run build # MAIN IMAGE # -------------------------------------------------------------------------------- -FROM node:16.19.1-alpine as production +FROM node:16.20.2-alpine as production # Let's make our home WORKDIR /usr/src/docs