This is an automated email from the ASF dual-hosted git repository. vgalaxies pushed a commit to branch fix-docker in repository https://gitbox.apache.org/repos/asf/incubator-hugegraph.git
commit a78037e7a0c9a13880335430ff866876f65d7d79 Author: VGalaxies <vgalax...@apache.org> AuthorDate: Mon Mar 10 15:02:55 2025 +0800 try fix --- 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 \