Skip to content

Commit af8053a

Browse files
committed
master: bump debian image to Trixie
Currently the version of capnproto on Debian 12, 0.9.2, does not play well with `mpgen` used by recently-merged multiprocess PR #31802. This is currently being worked on: bitcoin-core/libmultiprocess#194 ... but in the meantime bump Debian versions to fix.
1 parent 3d535b7 commit af8053a

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

master/Dockerfile

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
FROM debian:bookworm-slim AS build
1+
FROM debian:trixie-slim AS build
22

33
LABEL maintainer.0="Will Clark (@willcl-ark)"
44

@@ -7,7 +7,7 @@ RUN apt-get update -y \
77
build-essential \
88
ca-certificates \
99
ccache \
10-
clang-16 \
10+
clang-19 \
1111
cmake \
1212
git \
1313
libboost-dev \
@@ -40,16 +40,16 @@ RUN set -ex \
4040
-DBUILD_TX=ON \
4141
-DBUILD_UTIL=OFF \
4242
-DCMAKE_BUILD_TYPE=RelWithDebInfo \
43-
-DCMAKE_CXX_COMPILER=clang++-16 \
44-
-DCMAKE_C_COMPILER=clang-16 \
43+
-DCMAKE_CXX_COMPILER=clang++-19 \
44+
-DCMAKE_C_COMPILER=clang-19 \
4545
-DCMAKE_INSTALL_PREFIX:PATH="${BITCOIN_PREFIX}" \
4646
-DWITH_CCACHE=ON \
4747
&& cmake --build build -j$(nproc) \
4848
&& strip build/bin/bitcoin-cli build/bin/bitcoin-tx build/bin/bitcoind \
4949
&& cmake --install build
5050

5151
# Second stage
52-
FROM debian:bookworm-slim
52+
FROM debian:trixie-slim
5353

5454
ARG UID=101
5555
ARG GID=101

0 commit comments

Comments
 (0)