diff --git a/Dockerfile b/Dockerfile index a9de9591..d385a2bb 100755 --- a/Dockerfile +++ b/Dockerfile @@ -48,7 +48,9 @@ COPY LICENSE . COPY create_config_prod.js . # - Copy in the service info generator COPY create_service_info.js . -# - Copy in the entrypoint, which writes the config file and starts NGINX +# - Copy the entrypoint.bash, which sets the user and permissions +COPY entrypoint.bash . +# - Copy in the run.bash, which writes the config file and starts NGINX COPY run.bash . # - Copy in package.json to provide version to scripts COPY package.json . diff --git a/dev.Dockerfile b/dev.Dockerfile index 8725cd54..7f0865cd 100644 --- a/dev.Dockerfile +++ b/dev.Dockerfile @@ -13,6 +13,7 @@ LABEL org.opencontainers.image.description="Local development image for Bento Pu WORKDIR /bento-public +COPY entrypoint.bash . COPY run.dev.bash . COPY package.json . COPY package-lock.json .