From 92abb19f9c6d49325167cd3eb15ec2b62ce5d5c9 Mon Sep 17 00:00:00 2001 From: Keith Holliday Date: Fri, 9 Feb 2018 08:59:49 -0700 Subject: [PATCH] Docker update (#9976) * Updated docker prod * Added new gulp cli --- Dockerfile-Production | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Dockerfile-Production b/Dockerfile-Production index baee7d23ca..fdc8dd6100 100644 --- a/Dockerfile-Production +++ b/Dockerfile-Production @@ -15,12 +15,12 @@ ENV STRIPE_PUB_KEY pk_85fQ0yMECHNfHTSsZoxZXlPSwSNfA # The used solution is suggested here https://github.com/npm/npm/issues/16807#issuecomment-313591975 RUN yarn global add npm@5 # Install global packages -RUN npm install -g gulp mocha +RUN npm install -g gulp-cli mocha # Clone Habitica repo and install dependencies RUN mkdir -p /usr/src/habitrpg WORKDIR /usr/src/habitrpg -RUN git clone --branch v4.25.0 https://github.com/HabitRPG/habitica.git /usr/src/habitrpg +RUN git clone --branch v4.26.0 https://github.com/HabitRPG/habitica.git /usr/src/habitrpg RUN npm install RUN gulp build:prod --force