vls: improve log message for hash

Signed-off-by: Lakshya Singh <lakshay.singh1108@gmail.com>
This commit is contained in:
Lakshya Singh 2024-02-29 21:52:39 +05:30
parent eea0b9fe5f
commit 22a21856ae
No known key found for this signature in database
GPG Key ID: D3239BA6109A2CE7
2 changed files with 2 additions and 2 deletions

View File

@ -87,9 +87,9 @@ RUN apk update && \
ARG VLS_GIT_HASH=5712eb74b672ffd8b691b9e772e05a827d03e7df \
VLS_REPO=https://gitlab.com/lightning-signer/validating-lightning-signer.git
RUN echo building remote_hsmd_socket from hash: $VLS_GIT_HASH
RUN git clone $VLS_REPO vls
RUN cd vls && \
echo building $VLS_GIT_HASH && \
git checkout $VLS_GIT_HASH && \
cargo install --locked --path ./vls-proxy --bin remote_hsmd_socket --profile release --root /usr/local/ && \
cargo clean

View File

@ -13,9 +13,9 @@ RUN apk update && \
rust
ARG VLS_GIT_HASH=5712eb74b672ffd8b691b9e772e05a827d03e7df
RUN echo building vlsd from hash: $VLS_GIT_HASH
RUN git clone https://gitlab.com/lightning-signer/validating-lightning-signer.git vls
RUN cd vls && \
echo building $VLS_GIT_HASH && \
git checkout $VLS_GIT_HASH && \
cargo install --locked --path ./vls-proxy --bin vlsd2 --profile release --root /usr/local/ && \
cargo install --locked --path ./vls-cli --profile release --root /usr/local/ && \