From cb0ece4dd4c46f0ece8d99f54482bfa6e7c01b18 Mon Sep 17 00:00:00 2001 From: Luke Childs Date: Mon, 13 Apr 2020 20:52:05 +0700 Subject: [PATCH] Install binaries in /usr/local/bin --- Dockerfile | 6 +++--- entrypoint.sh => entrypoint | 0 2 files changed, 3 insertions(+), 3 deletions(-) rename entrypoint.sh => entrypoint (100%) diff --git a/Dockerfile b/Dockerfile index 2526709..ed0da75 100644 --- a/Dockerfile +++ b/Dockerfile @@ -13,9 +13,9 @@ RUN git checkout $ELECTRUM_VERSION RUN git submodule update --init RUN apt-get install -y libsecp256k1-0 RUN python3 -m pip install --user . cryptography -RUN ln -s $ELECTRUM_INSTALL_DIR/run_electrum /usr/bin/electrum +RUN ln -s $ELECTRUM_INSTALL_DIR/run_electrum /usr/local/bin/electrum WORKDIR /root -ADD ./entrypoint.sh /entrypoint.sh -ENTRYPOINT ["/entrypoint.sh"] +COPY entrypoint /usr/local/bin/ +ENTRYPOINT ["entrypoint"] diff --git a/entrypoint.sh b/entrypoint similarity index 100% rename from entrypoint.sh rename to entrypoint