Troubleshooting nginx configuration

This commit is contained in:
Aaron Louie 2020-02-01 10:40:34 -05:00
parent b21b55c79f
commit 796cfae248
1 changed files with 11 additions and 10 deletions

View File

@ -1,15 +1,16 @@
### STAGE 1: Build ###
FROM node:12.7-alpine AS build
FROM node:alpine AS builder
RUN mkdir /crc-bpmn
WORKDIR /crc-bpmn
COPY package.json ./
RUN npm install
COPY . .
RUN npm run build:staging
ADD package.json /crc-bpmn/
COPY . /crc-bpmn/
RUN npm install && \
npm run build:staging
### STAGE 2: Run ###
FROM nginx:1.17.1-alpine
COPY --from=build /crc-bpmn/dist/cr-connect-bpmn /usr/share/nginx/html
# expose ports
EXPOSE 80
FROM nginx:alpine
COPY --from=builder /crc-bpmn/dist/cr-connect-bpmn /usr/share/nginx/html/