diff --git a/Dockerfile.centos b/Dockerfile.centos index c23409d..6c69d75 100644 --- a/Dockerfile.centos +++ b/Dockerfile.centos @@ -79,12 +79,14 @@ RUN wget -qO- https://github.com/git/git/archive/v2.25.0.tar.gz | tar zxf - -C . && make -j$(nproc) && make install \ && cd ../ && rm -rf git-2.25.0 -# Install nebula third-party 1.0 and 2.0 and 3.3 +# Install nebula third-party 1.0 and 2.0 and 3.0 and 3.3 RUN git clone https://github.com/vesoft-inc/nebula-third-party.git \ && cd nebula-third-party \ && ./install-third-party.sh \ && git checkout origin/release-3.3 \ && ./install-third-party.sh \ + && git checkout origin/v3.0 \ + && ./install-third-party.sh \ && git checkout origin/v2.0 \ && ./install-third-party.sh \ && git checkout origin/v1.0 \ diff --git a/Dockerfile.ubuntu b/Dockerfile.ubuntu index a0953b7..9480740 100644 --- a/Dockerfile.ubuntu +++ b/Dockerfile.ubuntu @@ -68,12 +68,14 @@ RUN wget -qO- https://github.com/git/git/archive/v2.25.0.tar.gz | tar zxf - -C . && make -j$(nproc) && make install \ && cd ../ && rm -rf git-2.25.0 -# Install nebula third-party 1.0 and 2.0 and 3.0 +# Install nebula third-party 1.0 and 2.0 and 3.0 and 3.3 RUN git clone https://github.com/vesoft-inc/nebula-third-party.git \ && cd nebula-third-party \ && ./install-third-party.sh \ && git checkout origin/release-3.3 \ && ./install-third-party.sh \ + && git checkout origin/v3.0 \ + && ./install-third-party.sh \ && git checkout origin/v2.0 \ && ./install-third-party.sh \ && git checkout origin/v1.0 \