lock yarn dependency

This commit is contained in:
Mike Greiling 2017-09-15 14:13:20 -05:00
parent 4e61528ad5
commit 5d6075b475
4 changed files with 16 additions and 5 deletions

View file

@ -27,9 +27,10 @@ RUN if [ -n "$CHROME_VERSION" ]; then /scripts/install-chrome $CHROME_VERSION &&
ARG PHANTOMJS_VERSION
RUN if [ -n "$PHANTOMJS_VERSION" ] ; then /scripts/install-phantomjs $PHANTOMJS_VERSION; fi
# NodeJS
# NodeJS and Yarn
ARG NODE_VERSION
RUN if [ -n "$NODE_VERSION" ] ; then /scripts/install-node $NODE_VERSION && node --version; fi
ARG YARN_VERSION
RUN if [ -n "$NODE_VERSION" ] ; then /scripts/install-node $NODE_VERSION $YARN_VERSION && node --version && yarn --version; fi
# Golang
ARG GOLANG_VERSION