From 2bc590895c27e15e4f9cc0577fdc3a1308e97dd6 Mon Sep 17 00:00:00 2001 From: Juan Picado Date: Wed, 14 Jul 2021 19:57:46 +0200 Subject: [PATCH] fix: update docker base image node 14.17.3 --- Dockerfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Dockerfile b/Dockerfile index 813fa4726..285908cbf 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,4 +1,4 @@ -FROM --platform=${BUILDPLATFORM:-linux/amd64} node:14.17.1-alpine as builder +FROM --platform=${BUILDPLATFORM:-linux/amd64} node:14.17.3-alpine as builder ENV NODE_ENV=production \ VERDACCIO_BUILD_REGISTRY=https://registry.verdaccio.org \ @@ -24,7 +24,7 @@ RUN yarn config set npmRegistryServer $VERDACCIO_BUILD_REGISTRY && \ yarn cache clean && \ yarn workspaces focus --production -FROM node:14.17.1-alpine +FROM node:14.17.3-alpine LABEL maintainer="https://github.com/verdaccio/verdaccio" ENV VERDACCIO_APPDIR=/opt/verdaccio \