fix: use fully-qualified image names for podman compatibility
Some checks failed
Build and Push Images / determine-version (push) Successful in 27s
Build and Push Images / build-nvidia (push) Has started running
Build and Push Images / Release (push) Has been cancelled
Build and Push Images / Notify (push) Has been cancelled
Build and Push Images / build-strixhalo (push) Has been cancelled
Build and Push Images / build-intel (push) Has been cancelled
Build and Push Images / build-rdna2 (push) Has been cancelled
Some checks failed
Build and Push Images / determine-version (push) Successful in 27s
Build and Push Images / build-nvidia (push) Has started running
Build and Push Images / Release (push) Has been cancelled
Build and Push Images / Notify (push) Has been cancelled
Build and Push Images / build-strixhalo (push) Has been cancelled
Build and Push Images / build-intel (push) Has been cancelled
Build and Push Images / build-rdna2 (push) Has been cancelled
Podman requires docker.io/ prefix for Docker Hub images when unqualified-search registries are not configured.
This commit is contained in:
@@ -6,7 +6,7 @@
|
||||
# docker build -t git.daviestechlabs.io/daviestechlabs/ray-worker-intel:latest \
|
||||
# -f dockerfiles/Dockerfile.ray-worker-intel .
|
||||
|
||||
FROM rayproject/ray:2.53.0-py311
|
||||
FROM docker.io/rayproject/ray:2.53.0-py311
|
||||
|
||||
# OCI Image Spec labels
|
||||
LABEL org.opencontainers.image.title="Ray Worker - Intel GPU"
|
||||
|
||||
@@ -6,7 +6,7 @@
|
||||
# docker build -t git.daviestechlabs.io/daviestechlabs/ray-worker-nvidia:latest \
|
||||
# -f dockerfiles/Dockerfile.ray-worker-nvidia .
|
||||
|
||||
FROM rayproject/ray:2.53.0-py311-cu121
|
||||
FROM docker.io/rayproject/ray:2.53.0-py311-cu121
|
||||
|
||||
# OCI Image Spec labels
|
||||
LABEL org.opencontainers.image.title="Ray Worker - NVIDIA GPU"
|
||||
|
||||
@@ -12,7 +12,7 @@
|
||||
FROM docker.io/rocm/pytorch:rocm6.4.4_ubuntu22.04_py3.10_pytorch_release_2.7.1 AS rocm-source
|
||||
|
||||
# Stage 2: Production image
|
||||
FROM rayproject/ray:2.53.0-py311 AS production
|
||||
FROM docker.io/rayproject/ray:2.53.0-py311 AS production
|
||||
|
||||
# OCI Image Spec labels
|
||||
LABEL org.opencontainers.image.title="Ray Worker - AMD RDNA 2"
|
||||
|
||||
@@ -13,7 +13,7 @@
|
||||
FROM docker.io/rocm/pytorch:rocm7.1_ubuntu24.04_py3.12_pytorch_release_2.9.1 AS rocm-source
|
||||
|
||||
# Stage 2: Production image
|
||||
FROM rayproject/ray:2.53.0-py311 AS production
|
||||
FROM docker.io/rayproject/ray:2.53.0-py311 AS production
|
||||
|
||||
# OCI Image Spec labels
|
||||
LABEL org.opencontainers.image.title="Ray Worker - AMD Strix Halo"
|
||||
|
||||
Reference in New Issue
Block a user