From d1a02d7388309539bf1dcfe231030f116336d667 Mon Sep 17 00:00:00 2001 From: "Juan Picado @jotadeveloper" Date: Fri, 8 Dec 2017 12:53:47 +0100 Subject: [PATCH] build: update Docker to node 9.2.0 --- Dockerfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Dockerfile b/Dockerfile index 833259173..070bd65ca 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,4 +1,4 @@ -FROM node:8.9.0-alpine +FROM node:9.2.0-alpine LABEL maintainer="https://github.com/verdaccio/verdaccio" RUN apk --no-cache add openssl && \ @@ -23,7 +23,7 @@ RUN npm config set registry http://registry.npmjs.org/ && \ npm install -g -s flow-bin@0.60.0 && \ yarn install --production=false && \ yarn run lint && \ - yarn run test && \ + yarn run test -- --silent true --coverage false --bail && \ yarn run code:build && \ yarn run build:webui && \ yarn cache clean && \