From 61faa33de11939c0fc9ff9903b67d466426a65fb Mon Sep 17 00:00:00 2001 From: "Juan Picado @jotadeveloper" Date: Mon, 13 Apr 2020 11:18:21 +0200 Subject: [PATCH] feat: update docker node to 12.16.2 (#1776) --- Dockerfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Dockerfile b/Dockerfile index 9e8495024..0d117c6f0 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,4 +1,4 @@ -FROM node:12.13.1-alpine as builder +FROM node:12.16.2-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.13.1-alpine +FROM node:12.16.2-alpine LABEL maintainer="https://github.com/verdaccio/verdaccio" ENV VERDACCIO_APPDIR=/opt/verdaccio \