Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

WIP: community image #244

Open
wants to merge 3 commits into
base: main
Choose a base branch
from
Open
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 rhoai-ilab-image/Containerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,9 @@
FROM registry.redhat.io/rhelai1/instructlab-nvidia-rhel9:1.3
FROM nvcr.io/nvidia/cuda:12.6.3-cudnn-devel-ubi9

RUN dnf -y install libcudnn8 nvidia-driver-NVML nvidia-driver-cuda-libs openblas-devel git python3-pip && \
dnf clean all

RUN pip cache remove llama_cpp_python
RUN pip install kfp==2.9.0
RUN pip install kubeflow-training
RUN CMAKE_ARGS="-DLLAMA_CUDA=on -DLLAMA_NATIVE=off" pip install 'instructlab[cuda]'
Loading