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

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


The following commit(s) were added to refs/heads/master by this push:
     new d707163b fix: github action build hubble image failed (#557)
d707163b is described below

commit d707163b5ad379429edb1ae98802ab59141c50be
Author: Dandelion <[email protected]>
AuthorDate: Wed Dec 13 19:10:31 2023 +0800

    fix: github action build hubble image failed (#557)
---
 hugegraph-hubble/Dockerfile | 8 ++++----
 1 file changed, 4 insertions(+), 4 deletions(-)

diff --git a/hugegraph-hubble/Dockerfile b/hugegraph-hubble/Dockerfile
index 18c9a5c0..ef513c65 100644
--- a/hugegraph-hubble/Dockerfile
+++ b/hugegraph-hubble/Dockerfile
@@ -25,13 +25,13 @@ WORKDIR /pkg
 
 RUN set -x \
     && apt-get -q update \
-    && apt-get install -y npm \
+    && apt-get install curl gnupg -yq \
+    && curl -sL https://deb.nodesource.com/setup_16.x | bash \
+    && apt-get install -y nodejs \
     && apt-get clean
 
 RUN set -x \
-    && mvn install $MAVEN_ARGS -pl hugegraph-client,hugegraph-loader -am 
-Dmaven.javadoc.skip=true -DskipTests -ntp
-
-RUN set -x \
+    && mvn install $MAVEN_ARGS -pl hugegraph-client,hugegraph-loader -am 
-Dmaven.javadoc.skip=true -DskipTests -ntp \
     && cd /pkg/hugegraph-hubble/ \
     && mvn package $MAVEN_ARGS -e -B -ntp -DskipTests -Dmaven.javadoc.skip=true
 

Reply via email to