From 07e561b828db72a4db86c957289df9912961cc56 Mon Sep 17 00:00:00 2001 From: Devrandom Date: Wed, 21 Feb 2024 12:49:43 +0100 Subject: [PATCH] use VLS_GIT_HASH in both dockerfiles --- lightningd/Dockerfile | 1 + vlsd/Dockerfile | 5 +++-- 2 files changed, 4 insertions(+), 2 deletions(-) diff --git a/lightningd/Dockerfile b/lightningd/Dockerfile index b0de907..eee12b1 100644 --- a/lightningd/Dockerfile +++ b/lightningd/Dockerfile @@ -89,6 +89,7 @@ ARG VLS_GIT_HASH=f8dea081b8d3ba292285266c9b304eb1d32ceaad \ VLS_REPO=https://gitlab.com/lightning-signer/validating-lightning-signer.git RUN git clone $VLS_REPO vls RUN cd vls && \ + echo building $VLS_GIT_HASH \ git checkout $VLS_GIT_HASH && \ cargo install --path ./vls-proxy --bin remote_hsmd_socket --profile release --root /usr/local/ && \ cargo clean diff --git a/vlsd/Dockerfile b/vlsd/Dockerfile index e2c83ad..d55ee34 100644 --- a/vlsd/Dockerfile +++ b/vlsd/Dockerfile @@ -12,10 +12,11 @@ RUN apk update && \ protobuf-dev \ rust -ARG GIT_HASH=f8dea081b8d3ba292285266c9b304eb1d32ceaad +ARG VLS_GIT_HASH=f8dea081b8d3ba292285266c9b304eb1d32ceaad RUN git clone https://gitlab.com/lightning-signer/validating-lightning-signer.git vls RUN cd vls && \ - git checkout $GIT_HASH && \ + echo building $VLS_GIT_HASH \ + git checkout $VLS_GIT_HASH && \ cargo install --path ./vls-proxy --bin vlsd2 --profile release --root /usr/local/ && \ cargo install --path ./vls-cli --profile release --root /usr/local/ && \ cargo clean