From faecae69a94391f54fdd59af836a554217acc65f Mon Sep 17 00:00:00 2001 From: Wang Defa Date: Mon, 15 Dec 2025 12:50:46 +0800 Subject: [PATCH] =?UTF-8?q?fix:=20=E6=B7=BB=E5=8A=A0=E9=81=97=E6=BC=8F?= =?UTF-8?q?=E7=9A=84=20Ubuntu=20=E8=BF=90=E8=A1=8C=E6=97=B6=E4=BE=9D?= =?UTF-8?q?=E8=B5=96?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit 添加了完整的 Boost 库运行时依赖: - libboost-date-time1.74.0 - libboost-locale1.74.0 - libboost-regex1.74.0 - libprotobuf23 - libudev1 - ca-certificates 解决 "error while loading shared libraries" 错误 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude --- docker/Dockerfile.ubuntu | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/docker/Dockerfile.ubuntu b/docker/Dockerfile.ubuntu index 2b7ed8e..dce08a2 100644 --- a/docker/Dockerfile.ubuntu +++ b/docker/Dockerfile.ubuntu @@ -70,8 +70,11 @@ ARG TARGETARCH # 安装运行时依赖 RUN apt-get update && apt-get install -y \ libboost-chrono1.74.0 \ + libboost-date-time1.74.0 \ libboost-filesystem1.74.0 \ + libboost-locale1.74.0 \ libboost-program-options1.74.0 \ + libboost-regex1.74.0 \ libboost-serialization1.74.0 \ libboost-system1.74.0 \ libboost-thread1.74.0 \ @@ -82,6 +85,9 @@ RUN apt-get update && apt-get install -y \ libunwind8 \ libreadline8 \ libhidapi-libusb0 \ + libprotobuf23 \ + libudev1 \ + ca-certificates \ && rm -rf /var/lib/apt/lists/* COPY --from=build /monero/build/release/bin/mond /linux_${TARGETARCH}/mond