Skip to content

Commit

Permalink
Merge pull request #200 from bento-platform/fix/entrypoint
Browse files Browse the repository at this point in the history
fix: use custom entrypoint again
  • Loading branch information
davidlougheed authored Oct 10, 2024
2 parents 273796c + 826bfd9 commit 70b044b
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 70b044b

Please sign in to comment.