This is an automated email from the ASF dual-hosted git repository.
yangjiaqi 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 d6bc24e0f fix(dist): update build artifact path for docker deployment
(#2590)
d6bc24e0f is described below
commit d6bc24e0f2082c4e88cc83afad97fb8af55dd8af
Author: V_Galaxy <[email protected]>
AuthorDate: Tue Jul 16 20:25:02 2024 +0800
fix(dist): update build artifact path for docker deployment (#2590)
* fix path
---
hugegraph-pd/Dockerfile | 4 ++--
hugegraph-server/Dockerfile | 4 ++--
hugegraph-store/Dockerfile | 4 ++--
3 files changed, 6 insertions(+), 6 deletions(-)
diff --git a/hugegraph-pd/Dockerfile b/hugegraph-pd/Dockerfile
index b9cdb2209..a86b5b9bd 100644
--- a/hugegraph-pd/Dockerfile
+++ b/hugegraph-pd/Dockerfile
@@ -24,13 +24,13 @@ WORKDIR /pkg
ARG MAVEN_ARGS
RUN mvn package $MAVEN_ARGS -e -B -ntp -DskipTests -Dmaven.javadoc.skip=true
&& pwd && ls -l && rm \
- ./hugegraph-server/*.tar.gz && rm ./hugegraph-pd/dist/*.tar.gz && rm
./hugegraph-store/dist/*.tar.gz
+ ./hugegraph-server/*.tar.gz && rm ./hugegraph-pd/*.tar.gz && rm
./hugegraph-store/*.tar.gz
# 2nd stage: runtime env
# Note: ZGC (The Z Garbage Collector) is only supported on ARM-Mac with java >
13
FROM openjdk:11-slim
-COPY --from=build /pkg/hugegraph-pd/dist/hugegraph-pd-*/ /hugegraph-pd/
+COPY --from=build /pkg/hugegraph-pd/apache-hugegraph-incubating-pd-*/
/hugegraph-pd/
LABEL maintainer="HugeGraph Docker Maintainers <[email protected]>"
# TODO: use g1gc or zgc as default
diff --git a/hugegraph-server/Dockerfile b/hugegraph-server/Dockerfile
index deb31fe0a..0e39704fd 100644
--- a/hugegraph-server/Dockerfile
+++ b/hugegraph-server/Dockerfile
@@ -24,13 +24,13 @@ WORKDIR /pkg
ARG MAVEN_ARGS
RUN mvn package $MAVEN_ARGS -e -B -ntp -DskipTests -Dmaven.javadoc.skip=true
&& pwd && ls -l && rm \
- ./hugegraph-server/*.tar.gz && rm ./hugegraph-pd/dist/*.tar.gz && rm
./hugegraph-store/dist/*.tar.gz
+ ./hugegraph-server/*.tar.gz && rm ./hugegraph-pd/*.tar.gz && rm
./hugegraph-store/*.tar.gz
# 2nd stage: runtime env
# Note: ZGC (The Z Garbage Collector) is only supported on ARM-Mac with java >
13
FROM openjdk:11-slim
-COPY --from=build /pkg/hugegraph-server/apache-hugegraph-incubating-*/
/hugegraph-server/
+COPY --from=build /pkg/hugegraph-server/apache-hugegraph-incubating-server-*/
/hugegraph-server/
LABEL maintainer="HugeGraph Docker Maintainers <[email protected]>"
# TODO: use g1gc or zgc as default
diff --git a/hugegraph-store/Dockerfile b/hugegraph-store/Dockerfile
index 2fa9e3fc0..c7329a8f8 100644
--- a/hugegraph-store/Dockerfile
+++ b/hugegraph-store/Dockerfile
@@ -24,13 +24,13 @@ WORKDIR /pkg
ARG MAVEN_ARGS
RUN mvn package $MAVEN_ARGS -e -B -ntp -DskipTests -Dmaven.javadoc.skip=true
&& pwd && ls -l && rm \
- ./hugegraph-server/*.tar.gz && rm ./hugegraph-pd/dist/*.tar.gz && rm
./hugegraph-store/dist/*.tar.gz
+ ./hugegraph-server/*.tar.gz && rm ./hugegraph-pd/*.tar.gz && rm
./hugegraph-store/*.tar.gz
# 2nd stage: runtime env
# Note: ZGC (The Z Garbage Collector) is only supported on ARM-Mac with java >
13
FROM openjdk:11-slim
-COPY --from=build /pkg/hugegraph-store/dist/hugegraph-store-*/
/hugegraph-store/
+COPY --from=build /pkg/hugegraph-store/apache-hugegraph-incubating-store-*/
/hugegraph-store/
LABEL maintainer="HugeGraph Docker Maintainers <[email protected]>"
# TODO: use g1gc or zgc as default