Upgrade web docker build base image to node:10 (#1068)

Signed-off-by: Kevin Lingerfelt <kl@buoyant.io>
This commit is contained in:
Kevin Lingerfelt 2018-06-05 11:52:01 -07:00 committed by GitHub
parent b7da30a293
commit 4584637920
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 2 additions and 2 deletions

View File

@ -1,6 +1,6 @@
## bundle web assets ## bundle web assets
FROM node:6.7.0 as webpack-bundle FROM node:10 as webpack-bundle
RUN curl -o- -L https://yarnpkg.com/install.sh | bash RUN curl -o- -L https://yarnpkg.com/install.sh | bash -s -- --version 1.7.0
ENV HOME /root ENV HOME /root
ENV PATH $HOME/.yarn/bin:$PATH ENV PATH $HOME/.yarn/bin:$PATH