From ee8c8f35d07c4aa62cf60400f57b6f6a4f4a925e Mon Sep 17 00:00:00 2001 From: snyk-bot Date: Wed, 14 Dec 2022 17:39:01 +0000 Subject: [PATCH] fix: Dockerfile to reduce vulnerabilities The following vulnerabilities are fixed with an upgrade: - https://snyk.io/vuln/SNYK-ALPINE314-LIBRETLS-2432985 - https://snyk.io/vuln/SNYK-ALPINE314-OPENSSL-2426333 - https://snyk.io/vuln/SNYK-ALPINE314-OPENSSL-2426333 - https://snyk.io/vuln/SNYK-ALPINE314-ZLIB-2434419 - https://snyk.io/vuln/SNYK-ALPINE314-ZLIB-2976174 --- Dockerfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Dockerfile b/Dockerfile index 713e436d2a87..88bb9d76768c 100644 --- a/Dockerfile +++ b/Dockerfile @@ -5,7 +5,7 @@ # -------------------------------------------------------------------------------- # BASE IMAGE # -------------------------------------------------------------------------------- -FROM node:16.13.0-alpine as base +FROM node:16.18-alpine as base RUN apk add --no-cache make g++ git @@ -57,7 +57,7 @@ RUN npm run build # MAIN IMAGE # -------------------------------------------------------------------------------- -FROM node:16.13.0-alpine as production +FROM node:16.18-alpine as production # Let's make our home WORKDIR /usr/src/docs