Separate call to upgrade npm so that it occurs before any other installs

This commit is contained in:
Nathan Thompson 2016-06-17 00:53:08 -06:00
parent 90d4468e9e
commit a87647995d

View file

@ -25,7 +25,8 @@ RUN apt-get clean
RUN rm -rf /var/lib/apt/lists/*
# Install global packages
RUN npm install -g gulp grunt-cli bower npm@3
RUN npm install -g npm@3
RUN npm install -g gulp grunt-cli bower
# Clone Habitica repo and install dependencies
WORKDIR /habitrpg