From 4fcf0745951f81feacaa9461f9857ed7d361449c Mon Sep 17 00:00:00 2001 From: willyb321 Date: Sun, 21 Oct 2018 08:37:08 +1100 Subject: [PATCH] dont git reset in docker --- .docker/Dockerfile | 2 -- 1 file changed, 2 deletions(-) diff --git a/.docker/Dockerfile b/.docker/Dockerfile index b3db1407..7c6523c0 100644 --- a/.docker/Dockerfile +++ b/.docker/Dockerfile @@ -17,13 +17,11 @@ RUN npm i -g npm # Set up coriolis-data WORKDIR /src/app/coriolis-data RUN git fetch --all -RUN git reset --hard origin/$BRANCH RUN npm install --no-package-lock RUN npm start WORKDIR /src/app/coriolis RUN git fetch --all -RUN git reset --hard origin/$BRANCH RUN npm install --no-package-lock RUN npm run build