Update Dockerfile

This commit is contained in:
William
2020-01-23 07:28:59 +11:00
committed by GitHub
parent 9ebe5dc786
commit a77d991cf9

View File

@@ -1,15 +1,12 @@
### STAGE 1: Build ###
FROM node:9.11.1-alpine as builder
ARG branch=develop
ENV BRANCH=$branch
ENV BRANCH=master
WORKDIR /src/app
RUN mkdir -p /src/app/coriolis
RUN mkdir -p /src/app/coriolis-data
RUN apk add --update git
COPY . /src/app/coriolis
RUN npm i -g npm
# Set up coriolis-data
@@ -21,6 +18,7 @@ RUN npm start
# Set up coriolis
WORKDIR /src/app/coriolis
RUN git clone https://github.com/EDCD/coriolis.git .
RUN git checkout ${BRANCH}
RUN npm install --no-package-lock
RUN npm run build