File tree Expand file tree Collapse file tree 2 files changed +13
-0
lines changed Expand file tree Collapse file tree 2 files changed +13
-0
lines changed Original file line number Diff line number Diff line change 42
42
- name : RockyLinux-9/CUDA-12.8.1
43
43
image : " rust-gpu/rust-cuda-rockylinux9-cuda12"
44
44
dockerfile : ./container/rockylinux9-cuda12/Dockerfile
45
+ - name : Ubuntu-24.04/CUDA-12.8.1/Modal-CI
46
+ image : " rust-gpu/rust-cuda-modal-ci"
47
+ dockerfile : ./container/modal-ci/Dockerfile
45
48
steps :
46
49
- name : Checkout repository
47
50
uses : actions/checkout@v4
@@ -124,6 +127,8 @@ jobs:
124
127
image : " rust-gpu/rust-cuda-ubuntu24-cuda12"
125
128
- name : RockyLinux-9/CUDA-12.8.1
126
129
image : " rust-gpu/rust-cuda-rockylinux9-cuda12"
130
+ - name : Ubuntu-24.04/CUDA-12.8.1/Modal-CI
131
+ image : " rust-gpu/rust-cuda-modal-ci"
127
132
steps :
128
133
- name : Set artifact name
129
134
run : |
Original file line number Diff line number Diff line change
1
+ FROM ghcr.io/rust-gpu/rust-cuda-ubuntu24-cuda12:latest
2
+
3
+ RUN apt-get update && \
4
+ DEBIAN_FRONTEND=noninteractive apt-get install -y python3 python3-pip python3-venv && \
5
+ ln -sf /usr/bin/python3 /usr/local/bin/python && \
6
+ apt-get clean && rm -rf /var/lib/apt/lists/*
7
+
8
+ CMD ["python" , "--version" ]
You can’t perform that action at this time.
0 commit comments