Skip to content
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
FROM debian:buster@sha256:41f76363fd83982e14f7644486e1fb04812b3894aa4e396137c3435eaf05de88
FROM debian:bullseye
COPY /buster_deps.sh /
RUN /buster_deps.sh
4 changes: 2 additions & 2 deletions buster_deps.sh
Original file line number Diff line number Diff line change
Expand Up @@ -7,12 +7,12 @@ sha256_file=8381c440fe61fcbb01e209211ac01b519cd6adf51ab1c2281d5daad6ca4c8c8c

apt-get -yqq update &> /dev/null
apt-get -yqq upgrade &> /dev/null
apt-get -yqq install python curl build-essential libtool autotools-dev automake pkg-config bsdmainutils unzip git &> /dev/null
apt-get -yqq install python3 python-is-python3 curl ca-certificates build-essential libtool autotools-dev automake pkg-config bsdmainutils unzip git &> /dev/null

mkdir -p /opt

cd /opt && curl -sSO https://dl.google.com/android/repository/${NDK_FILENAME} &> /dev/null
echo "${sha256_file} ${NDK_FILENAME}" | shasum -a 256 --check
echo "${sha256_file} ${NDK_FILENAME}" | sha256sum -c -
unzip -qq ${NDK_FILENAME} &> /dev/null
rm ${NDK_FILENAME}

Expand Down
2 changes: 1 addition & 1 deletion run.sh
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ build_repo() {
done
}

build_repo https://github.com/bitcoin/bitcoin.git 1bc9988993ee84bc814e5a7f33cc90f670a19f6a bitcoin bitcoin --disable-man
build_repo https://github.com/bitcoin/bitcoin.git f49250e32be946ee4ed0f455772a4480453f0fdd bitcoin bitcoin --disable-man
build_repo https://github.com/bitcoinknots/bitcoin.git f8d8a318e8ff7fb396b3102a532c790a7430ed81 bitcoin bitcoin --disable-man
build_repo https://github.com/elementsproject/elements.git 928727ad6e626ac6ab45bb30867bd3519bc8ab25 elements liquid --enable-liquid

Expand Down