This is an automated email from the ASF dual-hosted git repository. vgalaxies pushed a commit to branch master in repository https://gitbox.apache.org/repos/asf/incubator-hugegraph.git
The following commit(s) were added to refs/heads/master by this push: new a4cb44ea8 fix(docker): fix build pd-store arm image a4cb44ea8 is described below commit a4cb44ea8fd0272179d1b441800f7a52c5713021 Author: VGalaxies <vgalax...@apache.org> AuthorDate: Mon Mar 10 16:53:04 2025 +0800 fix(docker): fix build pd-store arm image --- hugegraph-pd/Dockerfile | 2 ++ hugegraph-server/Dockerfile | 2 ++ hugegraph-store/Dockerfile | 2 ++ 3 files changed, 6 insertions(+) diff --git a/hugegraph-pd/Dockerfile b/hugegraph-pd/Dockerfile index 6ab5817f2..0303252db 100644 --- a/hugegraph-pd/Dockerfile +++ b/hugegraph-pd/Dockerfile @@ -42,6 +42,8 @@ WORKDIR /hugegraph-pd/ # 1. Install environment and init HugeGraph Sever RUN set -x \ + && rm /var/lib/dpkg/info/libc-bin.* \ + && apt-get -q clean \ && apt-get -q update \ && apt-get -q install -y --no-install-recommends --no-install-suggests \ dumb-init \ diff --git a/hugegraph-server/Dockerfile b/hugegraph-server/Dockerfile index 6e68149f0..65644d75b 100644 --- a/hugegraph-server/Dockerfile +++ b/hugegraph-server/Dockerfile @@ -42,6 +42,8 @@ WORKDIR /hugegraph-server/ # 1. Install environment and init HugeGraph Sever RUN set -x \ + && rm /var/lib/dpkg/info/libc-bin.* \ + && apt-get -q clean \ && apt-get -q update \ && apt-get -q install -y --no-install-recommends --no-install-suggests \ dumb-init \ diff --git a/hugegraph-store/Dockerfile b/hugegraph-store/Dockerfile index b677da2f6..a00e5474a 100644 --- a/hugegraph-store/Dockerfile +++ b/hugegraph-store/Dockerfile @@ -42,6 +42,8 @@ WORKDIR /hugegraph-store/ # 1. Install environment and init HugeGraph Sever RUN set -x \ + && rm /var/lib/dpkg/info/libc-bin.* \ + && apt-get -q clean \ && apt-get -q update \ && apt-get -q install -y --no-install-recommends --no-install-suggests \ dumb-init \