Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion dev/docker/Dockerfile.centos7-static-build
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ RUN set -ex; \
-e 's/mirror\.centos\.org/vault.centos.org/' \
/etc/yum.repos.d/CentOS-SCLo-scl-rh.repo; \
yum install -y git patch wget sudo java-1.8.0-openjdk-devel ccache; \
git clone --depth=1 https://github.com/apache/incubator-gluten /opt/gluten; \
git clone -b branch-1.5 --depth=1 https://github.com/apache/incubator-gluten /opt/gluten; \
echo "check_certificate = off" >> ~/.wgetrc; \
cd /opt/gluten && bash ./dev/vcpkg/setup-build-depends.sh; \
mkdir -p ${VCPKG_PATH}; \
Expand Down
2 changes: 1 addition & 1 deletion dev/docker/Dockerfile.centos8-dynamic-build
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ RUN set -ex; \
wget -nv https://archive.apache.org/dist/celeborn/celeborn-0.6.0/apache-celeborn-0.6.0-bin.tgz -P /opt/; \
wget -nv https://archive.apache.org/dist/incubator/uniffle/0.9.2/apache-uniffle-0.9.2-incubating-bin.tar.gz -P /opt/; \
wget -nv https://archive.apache.org/dist/hadoop/common/hadoop-2.8.5/hadoop-2.8.5.tar.gz -P /opt/; \
git clone --depth=1 https://github.com/apache/incubator-gluten /opt/gluten; \
git clone -b branch-1.5 --depth=1 https://github.com/apache/incubator-gluten /opt/gluten; \
cd /opt/gluten/.github/workflows/util/; \
./install_spark_resources.sh 3.2; \
./install_spark_resources.sh 3.3; \
Expand Down
2 changes: 1 addition & 1 deletion dev/docker/Dockerfile.centos8-static-build
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ RUN set -ex; \
yum install -y java-1.8.0-openjdk-devel patch wget git perl; \
rpm -qa | grep tzdata; \
dnf clean all; \
git clone --depth=1 https://github.com/apache/incubator-gluten /opt/gluten; \
git clone -b branch-1.5 --depth=1 https://github.com/apache/incubator-gluten /opt/gluten; \
cd /opt/gluten && bash ./dev/vcpkg/setup-build-depends.sh; \
mkdir -p ${VCPKG_PATH}; \
echo "Build arrow, then install the native libs to system paths and jar package to .m2/ directory."; \
Expand Down
2 changes: 1 addition & 1 deletion dev/docker/Dockerfile.centos9-dynamic-build
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ RUN set -ex; \
wget -nv https://archive.apache.org/dist/celeborn/celeborn-0.6.0/apache-celeborn-0.6.0-bin.tgz -P /opt/; \
wget -nv https://archive.apache.org/dist/incubator/uniffle/0.9.2/apache-uniffle-0.9.2-incubating-bin.tar.gz -P /opt/; \
wget -nv https://archive.apache.org/dist/hadoop/common/hadoop-2.8.5/hadoop-2.8.5.tar.gz -P /opt/; \
git clone --depth=1 https://github.com/apache/incubator-gluten /opt/gluten; \
git clone -b branch-1.5 --depth=1 https://github.com/apache/incubator-gluten /opt/gluten; \
cd /opt/gluten/.github/workflows/util/; \
./install_spark_resources.sh 3.2; \
./install_spark_resources.sh 3.3; \
Expand Down
2 changes: 1 addition & 1 deletion dev/docker/Dockerfile.centos9-static-build
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ RUN set -ex; \
echo "check_certificate = off" >> ~/.wgetrc; \
yum install -y java-17-openjdk-devel patch wget git perl; \
dnf clean all; \
git clone --depth=1 https://github.com/apache/incubator-gluten /opt/gluten; \
git clone -b branch-1.5 --depth=1 https://github.com/apache/incubator-gluten /opt/gluten; \
cd /opt/gluten && bash ./dev/vcpkg/setup-build-depends.sh; \
mkdir -p ${VCPKG_PATH}; \
echo "Build arrow, then install the native libs to system paths and jar package to .m2/ directory."; \
Expand Down
2 changes: 1 addition & 1 deletion dev/docker/cudf/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
FROM ghcr.io/facebookincubator/velox-dev:adapters
RUN yum install -y sudo patch maven perl && ln -sf /usr/local/bin/cmake /usr/bin

RUN git clone --depth=1 https://github.com/apache/incubator-gluten /opt/gluten
RUN git clone -b branch-1.5 --depth=1 https://github.com/apache/incubator-gluten /opt/gluten

# Install spark to folder /opt
RUN cd /opt/gluten/.github/workflows/util/ && ./install_spark_resources.sh 3.4
Expand Down
Loading