From e081a580c44666b45d300fe224fd1b50fbd2dbc9 Mon Sep 17 00:00:00 2001 From: "Juan Picado @jotadeveloper" Date: Thu, 26 Sep 2019 20:27:46 +0200 Subject: [PATCH] feat(docker): Node.js update to 10.16.3 (#1473) --- Dockerfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Dockerfile b/Dockerfile index dadb26dc6..1da6fbb4d 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,4 +1,4 @@ -FROM node:10.16-alpine as builder +FROM node:10.16.3-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:10.16-alpine +FROM node:10.16.3-alpine LABEL maintainer="https://github.com/verdaccio/verdaccio" ENV VERDACCIO_APPDIR=/opt/verdaccio \