From 6ab31639fab97b1b3e6323c4da862a1cae3ae1c6 Mon Sep 17 00:00:00 2001 From: Ramakrishnan Kandasamy <38713281+rmkanda@users.noreply.github.com> Date: Thu, 8 Apr 2021 17:49:36 +0530 Subject: [PATCH] fix: Upgrade Node from 14.16 to 14.16.1 for security fixes (#2172) Refer: https://github.com/nodejs/node/blob/master/doc/changelogs/CHANGELOG_V14.md#14.16.1 --- Dockerfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Dockerfile b/Dockerfile index 20504a61a..fdeae6377 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,4 +1,4 @@ -FROM --platform=${BUILDPLATFORM:-linux/amd64} node:14.16.0-alpine as builder +FROM --platform=${BUILDPLATFORM:-linux/amd64} node:14.16.1-alpine as builder ENV NODE_ENV=production \ VERDACCIO_BUILD_REGISTRY=https://registry.verdaccio.org @@ -23,7 +23,7 @@ RUN yarn config set npmRegistryServer $VERDACCIO_BUILD_REGISTRY && \ -FROM node:14.16.0-alpine +FROM node:14.16.1-alpine LABEL maintainer="https://github.com/verdaccio/verdaccio" ENV VERDACCIO_APPDIR=/opt/verdaccio \