diff --git a/Dockerfile b/Dockerfile index a9de9591..24c422cc 100755 --- a/Dockerfile +++ b/Dockerfile @@ -48,7 +48,7 @@ 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 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 . @@ -57,5 +57,4 @@ COPY package.json . # - this way we can cache layers COPY --from=build /bento-public/dist ./dist -ENTRYPOINT [ "/bin/bash", "./entrypoint.bash" ] CMD [ "/bin/bash", "./run.bash" ] 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 .