Ayushdavidkushwahaaaa commited on
Commit
3e55ef8
·
verified ·
1 Parent(s): b554606

Update Dockerfile

Browse files
Files changed (1) hide show
  1. Dockerfile +2 -2
Dockerfile CHANGED
@@ -27,6 +27,6 @@ RUN chmod +x entrypoint.sh
27
  # Expose necessary ports
28
  EXPOSE 5005 5055
29
 
30
- # Start the entrypoint script properly
31
- CMD ["/bin/sh", "/app/entrypoint.sh"]
32
 
 
27
  # Expose necessary ports
28
  EXPOSE 5005 5055
29
 
30
+ # Use ENTRYPOINT to ensure our script runs as intended
31
+ ENTRYPOINT ["/bin/sh", "/app/entrypoint.sh"]
32