From 36edfd531382b4f8984a0bb671a5bc769061cb75 Mon Sep 17 00:00:00 2001 From: snyk-bot Date: Sun, 13 Aug 2023 03:37:31 +0000 Subject: [PATCH] fix: Dockerfile to reduce vulnerabilities The following vulnerabilities are fixed with an upgrade: - https://snyk.io/vuln/SNYK-ALPINE315-BUSYBOX-2440607 - https://snyk.io/vuln/SNYK-ALPINE315-BUSYBOX-2440607 - https://snyk.io/vuln/SNYK-ALPINE315-OPENSSL-3314629 - https://snyk.io/vuln/SNYK-ALPINE315-OPENSSL-3314629 - https://snyk.io/vuln/SNYK-ALPINE315-ZLIB-2976173 --- Dockerfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Dockerfile b/Dockerfile index 6da96e5102de..fcf3cedc0a17 100644 --- a/Dockerfile +++ b/Dockerfile @@ -5,7 +5,7 @@ # -------------------------------------------------------------------------------- # BASE IMAGE # -------------------------------------------------------------------------------- -FROM node:16.13.1-alpine as base +FROM node:16.20.1-alpine as base RUN apk add --no-cache make g++ git @@ -58,7 +58,7 @@ RUN npm run build # MAIN IMAGE # -------------------------------------------------------------------------------- -FROM node:16.13.1-alpine as production +FROM node:16.20.1-alpine as production # Let's make our home WORKDIR /usr/src/docs