From b409c0111fda547aa6898a2c36f27eaf654cae91 Mon Sep 17 00:00:00 2001 From: Juan Picado Date: Sun, 20 Sep 2020 09:23:16 +0200 Subject: [PATCH] fix: update Dockerfile to Node v12.18.4 (#1945) --- Dockerfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Dockerfile b/Dockerfile index 3e384b8c3..d5bee1571 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,4 +1,4 @@ -FROM node:12.18.3-alpine as builder +FROM node:12.18.4-alpine as builder ENV NODE_ENV=production \ VERDACCIO_BUILD_REGISTRY=https://registry.verdaccio.org @@ -21,7 +21,7 @@ RUN yarn config set registry $VERDACCIO_BUILD_REGISTRY && \ -FROM node:12.18.3-alpine +FROM node:12.18.4-alpine LABEL maintainer="https://github.com/verdaccio/verdaccio" ENV VERDACCIO_APPDIR=/opt/verdaccio \