From f90174935f77e6f4fe221d0b760e6ae05eb3d9f2 Mon Sep 17 00:00:00 2001 From: Juan Picado Date: Sat, 31 Oct 2020 18:15:47 +0100 Subject: [PATCH] feat: update docker base image to node 14.15.0 (#1992) --- Dockerfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Dockerfile b/Dockerfile index 130f4bc89..6b3232417 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,4 +1,4 @@ -FROM node:12.18.4-alpine as builder +FROM node:14.15.0-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:12.18.4-alpine +FROM node:14.15.0-alpine LABEL maintainer="https://github.com/verdaccio/verdaccio" ENV VERDACCIO_APPDIR=/opt/verdaccio \