cr-connect-bpmn/Dockerfile

30 lines
824 B
Docker

### STAGE 1: Build ###
FROM node AS builder
RUN mkdir /crc-bpmn
WORKDIR /crc-bpmn
ADD package.json /crc-bpmn/
ADD package-lock.json /crc-bpmn/
COPY . /crc-bpmn/
ARG build_config=staging
RUN npm install && \
npm run build:$build_config
### STAGE 2: Run ###
FROM nginx
COPY --from=builder /crc-bpmn/dist/* /usr/share/nginx/html/
COPY --from=builder /crc-bpmn/nginx.conf /etc/nginx/conf.d/default.conf
# Script for substituting environment variables
COPY ./docker/substitute-env-variables.sh ./entrypoint.sh
RUN chmod +x ./entrypoint.sh
# Substitute environment variables in nginx configuration and index.html
ENTRYPOINT ["./entrypoint.sh", "/usr/share/nginx/html/index.html,/etc/nginx/conf.d/default.conf", "PRODUCTION,API_URL,IRB_URL,HOME_ROUTE,PORT0"]
### STAGE 3: Profit! ###
CMD ["nginx", "-g", "daemon off;"]