Skip to content

Commit

Permalink
fix: missing entrypoint in dockerfiles
Browse files Browse the repository at this point in the history
  • Loading branch information
v-rocheleau committed Nov 13, 2024
1 parent 9088195 commit 9fd973f
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 1 deletion.
4 changes: 3 additions & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -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 .
Expand Down
1 change: 1 addition & 0 deletions dev.Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -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 .
Expand Down

0 comments on commit 9fd973f

Please sign in to comment.