What happens if we reload, rather than start. perhaps settings will take effect.?

This commit is contained in:
Dan Funk 2020-05-26 02:55:51 -04:00
parent 9e1836d06b
commit 9918c872e0

View File

@ -14,7 +14,7 @@ RUN npm install && \
npm run build:$build_config npm run build:$build_config
### STAGE 2: Run ### ### STAGE 2: Run ###
FROM nginx:alpine FROM nginx:alpine as runtime
RUN set -x && apk add --update --no-cache bash libintl gettext curl RUN set -x && apk add --update --no-cache bash libintl gettext curl
COPY --from=builder /crc-bpmn/dist/* /etc/nginx/html/ COPY --from=builder /crc-bpmn/dist/* /etc/nginx/html/
@ -31,4 +31,4 @@ ENTRYPOINT ["./entrypoint.sh", \
"/etc/nginx/html"] "/etc/nginx/html"]
### STAGE 3: Profit! ### ### STAGE 3: Profit! ###
CMD ["nginx", "-g", "daemon off;"] CMD ["nginx", "-s", "reload"]