From 22cfea09070a060437fe01a74e9bd12b2cf834d9 Mon Sep 17 00:00:00 2001 From: Juan Picado Date: Sun, 9 Jan 2022 22:15:12 +0100 Subject: [PATCH] fix: update docker to v14.18.2 (#2888) --- Dockerfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Dockerfile b/Dockerfile index 7896b0030..b9131820c 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,4 +1,4 @@ -FROM --platform=${BUILDPLATFORM:-linux/amd64} node:14.18.1-alpine as builder +FROM --platform=${BUILDPLATFORM:-linux/amd64} node:14.18.2-alpine as builder ENV NODE_ENV=production \ VERDACCIO_BUILD_REGISTRY=https://registry.npmjs.org \ @@ -24,7 +24,7 @@ RUN yarn config set npmRegistryServer $VERDACCIO_BUILD_REGISTRY && \ yarn cache clean && \ yarn workspaces focus --production -FROM node:14.18.1-alpine +FROM node:14.18.2-alpine LABEL maintainer="https://github.com/verdaccio/verdaccio" ENV VERDACCIO_APPDIR=/opt/verdaccio \