renamed node and yarn variables

This commit is contained in:
Jose Ivan Vargas 2017-11-07 10:43:40 -06:00
parent 5932ece8d0
commit 5ee94c9921
3 changed files with 15 additions and 15 deletions

View file

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