From 30087794ba138f1bff5ca86986f6ccd79fff4a41 Mon Sep 17 00:00:00 2001 From: Antoine CARON Date: Fri, 1 Feb 2019 00:04:04 +0100 Subject: [PATCH] chore(webui): update docker node version --- webui/Dockerfile | 9 +-------- 1 file changed, 1 insertion(+), 8 deletions(-) diff --git a/webui/Dockerfile b/webui/Dockerfile index 33781bf4a..173ae423a 100644 --- a/webui/Dockerfile +++ b/webui/Dockerfile @@ -1,15 +1,8 @@ -FROM node:6.9.1 +FROM node:8.15.0 ENV WEBUI_DIR /src/webui RUN mkdir -p $WEBUI_DIR -RUN apt-get -yq update \ -&& apt-get -yq --no-install-suggests --no-install-recommends --force-yes install apt-transport-https \ -&& curl -sS https://dl.yarnpkg.com/debian/pubkey.gpg | apt-key add - \ -&& echo "deb https://dl.yarnpkg.com/debian/ stable main" | tee /etc/apt/sources.list.d/yarn.list \ -&& apt-get -yq update && apt-get -yq --no-install-suggests --no-install-recommends --force-yes install yarn \ -&& rm -fr /var/lib/apt/lists/ - COPY package.json $WEBUI_DIR/ COPY yarn.lock $WEBUI_DIR/