Skip to content

Commit d93861e

Browse files
committed
build image: include bitcoin-util from now on
1 parent 9079bfe commit d93861e

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

docker-bake.hcl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,7 @@ target "cmake-base" {
5959
inherits = ["maintained-base"]
6060
dockerfile = "./Dockerfile.dev"
6161
args = {
62-
BUILD_ARGS = "-DBUILD_TESTS=OFF -DBUILD_GUI=OFF -DBUILD_BENCH=OFF -DBUILD_FUZZ_BINARY=OFF -DWITH_ZMQ=ON"
62+
BUILD_ARGS = "-DBUILD_TESTS=OFF -DBUILD_GUI=OFF -DBUILD_BENCH=OFF -DBUILD_UTIL=ON -DBUILD_FUZZ_BINARY=OFF -DWITH_ZMQ=ON"
6363
}
6464
}
6565

src/warnet/image_build.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ def build_image(
2323
action: str,
2424
):
2525
if not build_args:
26-
build_args = '"-DBUILD_TESTS=OFF -DBUILD_GUI=OFF -DBUILD_BENCH=OFF -DBUILD_FUZZ_BINARY=OFF -DWITH_ZMQ=ON "'
26+
build_args = '"-DBUILD_TESTS=OFF -DBUILD_GUI=OFF -DBUILD_BENCH=OFF -DBUILD_UTIL=ON -DBUILD_FUZZ_BINARY=OFF -DWITH_ZMQ=ON "'
2727
else:
2828
build_args = f'"{build_args}"'
2929

0 commit comments

Comments
 (0)