From 594d5725cb095226765237ea29bad07037992aea Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Adrian=20N=C3=B6thlich?= Date: Sun, 22 Sep 2019 21:51:26 +0200 Subject: [PATCH] Bump NodeJS version to 10 to fix #447 MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Adrian Nöthlich --- Dockerfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Dockerfile b/Dockerfile index 0093f414c..ae312e3f9 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,5 +1,5 @@ # We use multi stage builds -FROM node:6-stretch-slim AS build +FROM node:10-stretch-slim AS build RUN apt-get update && DEBIAN_FRONTEND=noninteractive apt-get install -yq git jq python RUN npm install -g bower @@ -16,7 +16,7 @@ RUN npm install --production \ && npm install -g bower \ && bower install --allow-root -FROM node:6-stretch-slim +FROM node:10-stretch-slim # You want USE_SSL=true if not putting cryptpad behind a proxy ENV USE_SSL=false