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

@@ -111,6 +111,7 @@ jobs:
- stage: Update Rancher
name: Update Rancher
before_script: ./scripts/ci/utils/artifact-from-s3.sh -a "$S3_DBP_FOLDER/alfresco-demoshell.tar.bz2" -o "./dist/demo-shell"
script: ./scripts/travis/deploy/deploy.sh
- stage: Deploy PR

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" ]