Skip to content

Commit

Permalink
fix: use custom entrypoint again
Browse files Browse the repository at this point in the history
  • Loading branch information
davidlougheed committed Oct 9, 2024
1 parent 273796c commit 826bfd9
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
3 changes: 2 additions & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -57,4 +57,5 @@ COPY package.json .
# - this way we can cache layers
COPY --from=build /bento-public/dist ./dist

CMD ["bash", "./run.bash"]
ENTRYPOINT [ "/bin/bash", "./entrypoint.bash" ]
CMD [ "/bin/bash", "./run.bash" ]
3 changes: 2 additions & 1 deletion dev.Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -19,4 +19,5 @@ COPY package-lock.json .

COPY --from=install /bento-public/node_modules ./node_modules

CMD [ "bash", "./run.dev.bash" ]
ENTRYPOINT [ "/bin/bash", "./entrypoint.bash" ]
CMD [ "/bin/bash", "./run.dev.bash" ]

0 comments on commit 826bfd9

Please sign in to comment.