Skip to content

Commit

Permalink
attempt to fix docker file
Browse files Browse the repository at this point in the history
  • Loading branch information
p0mvn committed Apr 22, 2024
1 parent 9673c64 commit c0bf6a1
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -46,5 +46,9 @@ EXPOSE 50051
RUN apt-get update && \
apt-get install curl vim nano -y

ENTRYPOINT cd /osmosis && /bin/sqsd
# Use JSON array format for ENTRYPOINT
# If array is not used, the command arguments to docker run are ignored.
ENTRYPOINT ["/bin/sqsd"]

# Default CMD
CMD ["--config", "/osmosis/config.json", "--host", "sqs--default-host"]

0 comments on commit c0bf6a1

Please sign in to comment.