Skip to content
Closed
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
3 changes: 3 additions & 0 deletions scripts/docker/centos-multi.dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -130,6 +130,9 @@

COPY scripts/setup-centos-adapters.sh /

ARG CUDA_VERSION
ENV CUDA_VERSION=${CUDA_VERSION:-12.9}
Copy link
Copy Markdown
Collaborator Author

@bdice bdice Feb 7, 2026

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

This environment variable is read by bash /setup-centos-adapters.sh install_cuda in the next step.


RUN bash /setup-centos-adapters.sh install_cuda && \
dnf clean all

Expand Down Expand Up @@ -161,7 +164,7 @@
PATH=/usr/lib/jvm/java-1.8.0-openjdk/bin:${PATH}

# thrift1 requires shared libraries copied from /deps to /usr/local.
ENV LD_LIBRARY_PATH="/usr/local/lib:/usr/local/lib64:$LD_LIBRARY_PATH"

Check warning on line 167 in scripts/docker/centos-multi.dockerfile

View workflow job for this annotation

GitHub Actions / Build ci Image on amd64

Variables should be defined before their use

UndefinedVar: Usage of undefined variable '$LD_LIBRARY_PATH' More info: https://docs.docker.com/go/dockerfile/rule/undefined-var/

Check warning on line 167 in scripts/docker/centos-multi.dockerfile

View workflow job for this annotation

GitHub Actions / Build ci Image on arm64

Variables should be defined before their use

UndefinedVar: Usage of undefined variable '$LD_LIBRARY_PATH' More info: https://docs.docker.com/go/dockerfile/rule/undefined-var/

COPY --from=adapters-build /deps /usr/local

Expand Down
Loading