From 47dfab83906f948238a6874a87e986bbda570398 Mon Sep 17 00:00:00 2001 From: Leonardo Custodio Date: Thu, 15 Feb 2024 20:00:39 -0300 Subject: [PATCH] add start back for compatibility --- Dockerfile | 2 +- scripts/start.sh | 3 +++ 2 files changed, 4 insertions(+), 1 deletion(-) create mode 100644 scripts/start.sh diff --git a/Dockerfile b/Dockerfile index 9e0bf31..bad409b 100644 --- a/Dockerfile +++ b/Dockerfile @@ -34,4 +34,4 @@ COPY --from=builder /wallet/target/release/wallet /usr/local/bin # (In the current example: "duty captain man fantasy angry window release hammer suspect bullet panda special") # KEY_PASS = The pass of the key which when originally generated is set through the `KEY_PASS` env variable. (In the current example: `example`) # PLATFORM_KEY = The platform key is the API token used to authenticate the wallet daemon so it can request new transactions from the platform to sign. -CMD ["wallet"] +ENTRYPOINT ["start.sh"] diff --git a/scripts/start.sh b/scripts/start.sh new file mode 100644 index 0000000..7b17dc5 --- /dev/null +++ b/scripts/start.sh @@ -0,0 +1,3 @@ +#!/bin/bash + +wallet \ No newline at end of file