From a7c9cff7aa5f35c248a71930ee1687232a418317 Mon Sep 17 00:00:00 2001 From: snyk-bot Date: Tue, 12 Nov 2024 04:43:12 +0000 Subject: [PATCH] fix: Dockerfile to reduce vulnerabilities The following vulnerabilities are fixed with an upgrade: - https://snyk.io/vuln/SNYK-ALPINE313-APKTOOLS-1533754 - https://snyk.io/vuln/SNYK-ALPINE313-OPENSSL-1569448 - https://snyk.io/vuln/SNYK-ALPINE313-OPENSSL-1569448 - https://snyk.io/vuln/SNYK-ALPINE313-ZLIB-2976175 - https://snyk.io/vuln/SNYK-ALPINE313-BUSYBOX-1920735 --- Dockerfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Dockerfile b/Dockerfile index 0015cae90b43..33c35ba0d614 100644 --- a/Dockerfile +++ b/Dockerfile @@ -5,7 +5,7 @@ # -------------------------------------------------------------------------------- # BASE IMAGE # -------------------------------------------------------------------------------- -FROM node:16.2.0-alpine as base +FROM node:16.19.0-alpine as base RUN apk add --no-cache make g++ git @@ -54,7 +54,7 @@ RUN npm run build # MAIN IMAGE # -------------------------------------------------------------------------------- -FROM node:16.2.0-alpine as production +FROM node:16.19.0-alpine as production # Let's make our home WORKDIR /usr/src/docs