Skip to content

Commit ae20b9d

Browse files
Fix base AlmaLinux container location (#104)
Per the warning at <https://wiki.almalinux.org/containers/docker-images.html#about-almalinux-docker-images>, the correct quay.io organization is `almalinuxorg`, not `almalinux`. But we should just use the image from docker.io, like we do for Alma 8.
1 parent 9e262cb commit ae20b9d

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

.github/workflows/build-container.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ jobs:
2727
base:
2828
- image: 'docker.io/library/almalinux:8'
2929
tag_str: 'el8'
30-
- image: 'quay.io/almalinux/almalinux:9'
30+
- image: 'docker.io/library/almalinux:9'
3131
tag_str: 'el9'
3232
- image: 'nvidia/cuda:11.8.0-runtime-rockylinux8'
3333
tag_str: 'cuda_11_8_0'

Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# Default to EL9 builds
2-
ARG IMAGE_BASE=quay.io/almalinux/almalinux:9
2+
ARG IMAGE_BASE=docker.io/library/almalinux:9
33

44
FROM $IMAGE_BASE
55

0 commit comments

Comments
 (0)