index : btroops | |
Virtual board game-aid for BattleTroops, an infantry combat simulator wargame published by FASA in 1989. |
aboutsummaryrefslogtreecommitdiff |
diff options
-rw-r--r-- | Dockerfile | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -19,13 +19,13 @@ RUN apt-get update -qq -y && \ mv chromedriver /usr/local/bin/ WORKDIR /usr/src/app -COPY package*.json . +COPY package*.json ./ ENV CHROMEDRIVER_SKIP_DOWNLOAD=true RUN npm install --omit=dev RUN npm install chromedriver -COPY . . +COPY ./* ./ CMD [ "npm", "start" ] |