Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

refactor: Docker Entrypoint script #370

Draft
wants to merge 11 commits into
base: develop
Choose a base branch
from
Prev Previous commit
Next Next commit
fix: fixed ENTRYPOINT script name
  • Loading branch information
arnabghose997 authored Aug 7, 2023
commit 27d0db1249d363487c56873458257ae975223516
5 changes: 4 additions & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -17,5 +17,8 @@ RUN make install
# Expose Ports
EXPOSE 26657 1317 9090 9091 26656

# Provide permission to the script
RUN chmod +x ./scripts/docker-node/entrypoint.sh

# Entry for containers
ENTRYPOINT [ "./scripts/docker-node/setup.sh" ]
ENTRYPOINT [ "./scripts/docker-node/entrypoint.sh" ]