Skip to content

Commit

Permalink
feat(Dockerfiles): update CMD to ENTRYPOINT in envoy and react-fronte…
Browse files Browse the repository at this point in the history
…nd Dockerfiles for better Docker image entrypoint configuration
  • Loading branch information
ozeliurs committed Oct 8, 2024
1 parent 59e3439 commit 8f70de0
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion envoy/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -11,4 +11,4 @@ COPY docker-entrypoint.sh /docker-entrypoint.sh
# Make the entrypoint script executable
RUN chmod +x /docker-entrypoint.sh

CMD ["/docker-entrypoint.sh"]
ENTRYPOINT ["/docker-entrypoint.sh"]
2 changes: 1 addition & 1 deletion react-frontend/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -18,4 +18,4 @@ RUN chmod +x /docker-entrypoint.sh

EXPOSE 80

CMD ["/docker-entrypoint.sh"]
ENTRYPOINT ["/docker-entrypoint.sh"]

0 comments on commit 8f70de0

Please sign in to comment.