Skip to content

Commit 7522955

Browse files
committed
Add conda install to Manylinux 2_28 images
1 parent dd6a5de commit 7522955

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed

.ci/docker/manywheel/Dockerfile_2_28

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -117,6 +117,9 @@ COPY --from=jni /usr/local/include/jni.h /usr/local/
117117
FROM common as cpu_final
118118
ARG BASE_CUDA_VERSION=11.8
119119
ARG DEVTOOLSET_VERSION=11
120+
# Install Anaconda
121+
ADD ./common/install_conda_docker.sh install_conda.sh
122+
RUN bash ./install_conda.sh && rm install_conda.sh
120123
# Ensure the expected devtoolset is used
121124
ENV PATH=/opt/rh/gcc-toolset-${DEVTOOLSET_VERSION}/root/usr/bin:$PATH
122125
ENV LD_LIBRARY_PATH=/opt/rh/gcc-toolset-${DEVTOOLSET_VERSION}/root/usr/lib64:/opt/rh/gcc-toolset-${DEVTOOLSET_VERSION}/root/usr/lib:$LD_LIBRARY_PATH
@@ -138,6 +141,7 @@ COPY --from=magma /usr/local/cuda-${BASE_CUDA_VERSION} /usr/local/cuda-${BAS
138141
RUN ln -sf /usr/local/cuda-${BASE_CUDA_VERSION} /usr/local/cuda
139142
ENV PATH=/usr/local/cuda/bin:$PATH
140143

144+
141145
FROM common as rocm_final
142146
ARG ROCM_VERSION=3.7
143147
# Install ROCm

0 commit comments

Comments
 (0)