Fix the path for the docker image (#5839)

This commit is contained in:
Maurizio Vitale
2020-07-06 16:19:57 +01:00
committed by GitHub
parent 21b881e655
commit a9e8b18972
2 changed files with 4 additions and 1 deletions

View File

@@ -1,10 +1,12 @@
FROM nginx:stable-alpine
LABEL version="3.0.0"
ARG PROJECT_NAME=demo-shell
COPY ./docker/nginx.conf /etc/nginx/nginx.conf
COPY ./docker/entrypoint.sh /
WORKDIR /usr/share/nginx/html
COPY demo-shell/dist/ .
COPY dist/$PROJECT_NAME .
ENTRYPOINT [ "/entrypoint.sh" ]