This is an automated email from the ASF dual-hosted git repository.

jin pushed a commit to branch docker-1.0.0
in repository 
https://gitbox.apache.org/repos/asf/incubator-hugegraph-toolchain.git


The following commit(s) were added to refs/heads/docker-1.0.0 by this push:
     new 087c0020 chore(fix): docker image of hubble 1.0.0 have no curl (#564)
087c0020 is described below

commit 087c00206422044533dfcbfb41bcda423d21c512
Author: Dandelion <[email protected]>
AuthorDate: Sun Dec 24 00:21:00 2023 +0800

    chore(fix): docker image of hubble 1.0.0 have no curl (#564)
    
    
    
    ---------
    
    Co-authored-by: imbajin <[email protected]>
---
 hugegraph-hubble/Dockerfile | 7 +++++++
 1 file changed, 7 insertions(+)

diff --git a/hugegraph-hubble/Dockerfile b/hugegraph-hubble/Dockerfile
index 4518d82f..9ad44e49 100644
--- a/hugegraph-hubble/Dockerfile
+++ b/hugegraph-hubble/Dockerfile
@@ -36,5 +36,12 @@ FROM openjdk:11-slim
 COPY --from=build /pkg/hugegraph-hubble/apache-hugegraph-hubble-incubating-*/ 
/hubble
 WORKDIR /hubble/
 
+RUN set -x \
+    && apt-get -q update \
+    && apt-get install -y curl \
+    && apt-get clean \
+    && rm -rf /var/lib/apt/lists/*
+    
+
 EXPOSE 8088
 ENTRYPOINT ["./bin/start-hubble.sh", "-f true"]

Reply via email to