From 76e035e52fc08e9cd4c51160d11dac4c60b54024 Mon Sep 17 00:00:00 2001 From: Juan Picado Date: Fri, 8 Jan 2021 07:55:42 +0100 Subject: [PATCH] fix: update docker base image node 14.15.14 (#2049) --- Dockerfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Dockerfile b/Dockerfile index 13a0b8002..91d2b12a1 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,4 +1,4 @@ -FROM --platform=${BUILDPLATFORM:-linux/amd64} node:14.15.1-alpine as builder +FROM --platform=${BUILDPLATFORM:-linux/amd64} node:14.15.4-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.15.1-alpine +FROM node:14.15.4-alpine LABEL maintainer="https://github.com/verdaccio/verdaccio" ENV VERDACCIO_APPDIR=/opt/verdaccio \