Skip to content

Commit

Permalink
fix(su): update dockerfile and entrypoint.sh
Browse files Browse the repository at this point in the history
  • Loading branch information
dtfiedler committed May 1, 2024
1 parent 61ee002 commit 0dfcb8c
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion servers/su/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -41,4 +41,4 @@ COPY --from=builder /usr/src/su/entrypoint.sh /app/entrypoint.sh
# (This will be displayed when someone runs `docker build`)
LABEL build_instructions="To build just the binary, run the following command: docker build --target builder -t su ."

ENTRYPOINT [ "./app/entrypoint.sh" ]
ENTRYPOINT [ "/app/entrypoint.sh" ]
2 changes: 1 addition & 1 deletion servers/su/entrypoint.sh
Original file line number Diff line number Diff line change
Expand Up @@ -6,4 +6,4 @@ aws secretsmanager get-secret-value --secret-id ao-wallet --query SecretString -
# make a .env file
echo "SU_WALLET_PATH=wallet.json" >> .env

exec ./su $1
exec ./su "$@"

0 comments on commit 0dfcb8c

Please sign in to comment.