Skip to content
Open
Changes from 3 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
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,7 @@ ENV PROMPT_ALWAYS_RESPOND=y
ENV CC=/opt/rh/gcc-toolset-12/root/bin/gcc
ENV CXX=/opt/rh/gcc-toolset-12/root/bin/g++
ENV ARM_BUILD_TARGET=${ARM_BUILD_TARGET}
ENV CUDA_VERSION=${CUDA_VERSION:-12.9}

RUN mkdir -p /scripts /velox/scripts
COPY scripts /scripts
Expand All @@ -35,7 +36,7 @@ RUN bash -c "mkdir build && \
source ../velox/scripts/setup-centos-adapters.sh && \
install_adapters && \
install_clang15 && \
install_cuda 12.8) && \
install_cuda ${CUDA_VERSION}) && \
rm -rf build"

# put CUDA binaries on the PATH
Expand Down
Loading