From 458463792001ae0c6679d3dac21660f07adefac7 Mon Sep 17 00:00:00 2001 From: Kevin Lingerfelt Date: Tue, 5 Jun 2018 11:52:01 -0700 Subject: [PATCH] Upgrade web docker build base image to node:10 (#1068) Signed-off-by: Kevin Lingerfelt --- web/Dockerfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/web/Dockerfile b/web/Dockerfile index 2c6c6a6d7..13db6488b 100644 --- a/web/Dockerfile +++ b/web/Dockerfile @@ -1,6 +1,6 @@ ## bundle web assets -FROM node:6.7.0 as webpack-bundle -RUN curl -o- -L https://yarnpkg.com/install.sh | bash +FROM node:10 as webpack-bundle +RUN curl -o- -L https://yarnpkg.com/install.sh | bash -s -- --version 1.7.0 ENV HOME /root ENV PATH $HOME/.yarn/bin:$PATH