Skip to content
This repository has been archived by the owner on Aug 28, 2023. It is now read-only.

Add RAPIDS_{CUDA,PYTHON}_VERSION vars to citestwheel images #30

Merged
merged 1 commit into from
Jul 19, 2023
Merged
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
7 changes: 6 additions & 1 deletion citestwheel/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,13 @@ ARG LINUX_VER=ubuntu18.04
ARG BASE_IMAGE=nvidia/cuda:${CUDA_VER}-devel-${LINUX_VER}
FROM ${BASE_IMAGE}

ARG CUDA_VER
ARG PYTHON_VER=3.9

# Set RAPIDS versions env variables
ENV RAPIDS_CUDA_VERSION="${CUDA_VER}"
ENV RAPIDS_PY_VERSION="${PYTHON_VER}"

ARG DEBIAN_FRONTEND=noninteractive

ENV PYENV_ROOT="/pyenv"
Expand Down Expand Up @@ -43,7 +48,7 @@ RUN mkdir -p /aws_install && cd /aws_install && \

COPY citestwheel.sh /citestwheel.sh

# update git > 2.17
# update git > 2.17
RUN grep '18.04' /etc/issue && bash -c "apt-get install -y software-properties-common && add-apt-repository ppa:git-core/ppa -y && apt-get update && apt-get install --upgrade -y git" || true;

# Install latest gha-tools
Expand Down