txoo: version 0.8.0

- clap derive requires rust version 1.74
Signed-off-by: Lakshya Singh <lakshay.singh1108@gmail.com>
This commit is contained in:
Lakshya Singh 2024-08-25 20:12:17 +05:30
parent 61d6c90663
commit f30f1ce3ac
No known key found for this signature in database
GPG Key ID: 6491470634BAE613
2 changed files with 4 additions and 4 deletions

4
.env
View File

@ -10,9 +10,9 @@ CLBOSS_GIT_HASH=37d493cdf8360c83621d20ac54543b045ae0ef21
# cln plugins (2024-07-27)
CLN_PLUGINS_REPO=https://github.com/lightningd/plugins.git
CLN_PLUGINS_GIT_HASH=5e449468bd57db7d0f33178fe0dc867e0da94133
# txoo version 0.7.1
# txoo version 0.8.0
TXOO_REPO=https://gitlab.com/lightning-signer/txoo.git
TXOO_GIT_HASH=780d687f08cb0cd73a6e7f13c9fbde616befd1ed
TXOO_GIT_HASH=80e1465042f6e2c9fe447fba9bb3dff5dcd3eb6f
# vls version v0.12.0
VLS_REPO=https://gitlab.com/lightning-signer/validating-lightning-signer.git
VLS_GIT_HASH=c17067773b0bc57b27a6a0c7127c48867563e280

View File

@ -1,5 +1,5 @@
# build txoo
FROM --platform=${TARGETPLATFORM:-${BUILDPLATFORM:-linux/amd64}} alpine:3.18 as builder
FROM --platform=${TARGETPLATFORM:-${BUILDPLATFORM:-linux/amd64}} alpine:3.20 as builder
WORKDIR /build
@ -18,7 +18,7 @@ RUN cd txoo && \
cargo clean
# txoo runner
FROM --platform=${TARGETPLATFORM:-${BUILDPLATFORM:-linux/amd64}} alpine:3.18 as runner
FROM --platform=${TARGETPLATFORM:-${BUILDPLATFORM:-linux/amd64}} alpine:3.20 as runner
LABEL maintainer.0="Lakshya Singh (@king-11)" \
maintainer.1="Dev Random (@devrandom01)"