From 4e2a8d25a0251173194790e6ec1f8d6645a902cd Mon Sep 17 00:00:00 2001 From: snyk-bot Date: Wed, 14 Dec 2022 19:06:22 +0000 Subject: [PATCH 1/2] 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-2434418 - https://snyk.io/vuln/SNYK-ALPINE313-ZLIB-2976175 --- Dockerfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Dockerfile b/Dockerfile index 26217363aca5..bb6da3269a02 100644 --- a/Dockerfile +++ b/Dockerfile @@ -5,7 +5,7 @@ # -------------------------------------------------------------------------------- # BASE IMAGE # -------------------------------------------------------------------------------- -FROM node:16.2.0-alpine as base +FROM node:16.18-alpine as base RUN apk add --no-cache make g++ git @@ -61,7 +61,7 @@ RUN npm run build # MAIN IMAGE # -------------------------------------------------------------------------------- -FROM node:16.2.0-alpine as production +FROM node:16.18-alpine as production # Let's make our home WORKDIR /usr/src/docs From a7617b85786d56f6f210a47c77107b6f01d30538 Mon Sep 17 00:00:00 2001 From: Github Developers Jobs Community <143695930+kritsadanuansutha@users.noreply.github.com> Date: Sun, 24 Mar 2024 04:53:05 +0000 Subject: [PATCH 2/2] Initial commit