scripts: fully qualify base image references

Use fully qualified image names (e.g. "docker.io/...") in Dockerfiles
instead of relying on implicit registry resolution. This makes the
registry explicit and avoids ambiguity in environments where Docker
and Podman may use different default registries.

Signed-off-by: Radostin Stoyanov <rstoyanov@fedoraproject.org>
This commit is contained in:
Radostin Stoyanov 2026-03-04 08:58:55 +00:00 committed by Andrei Vagin
parent a72bf212ec
commit bcd66dc302
9 changed files with 9 additions and 9 deletions

View file

@ -1,4 +1,4 @@
FROM alpine
FROM docker.io/library/alpine:latest
ARG CC=gcc
COPY contrib/dependencies/apk-packages.sh /criu/contrib/dependencies/apk-packages.sh

View file

@ -1,4 +1,4 @@
FROM rocm/pytorch:latest
FROM docker.io/rocm/pytorch:latest
ARG CC=gcc

View file

@ -1 +1 @@
FROM arm32v7/ubuntu:bionic
FROM docker.io/arm32v7/ubuntu:bionic

View file

@ -1,4 +1,4 @@
FROM dockcross/base:latest
FROM docker.io/dockcross/base:latest
ENV ARCH=mips
ENV SUBARCH=mips

View file

@ -1,4 +1,4 @@
FROM dockcross/base:latest
FROM docker.io/dockcross/base:latest
ENV ARCH=mips
ENV SUBARCH=mips

View file

@ -1,4 +1,4 @@
FROM dockcross/base:latest
FROM docker.io/dockcross/base:latest
ENV ARCH=ppc64
ENV DEBIAN_ARCH=ppc64el

View file

@ -1,4 +1,4 @@
FROM dockcross/base:latest
FROM docker.io/dockcross/base:latest
ENV ARCH=ppc64
ENV DEBIAN_ARCH=ppc64el

View file

@ -1,4 +1,4 @@
FROM ubuntu:jammy
FROM docker.io/library/ubuntu:jammy
ENV ARCH=riscv64
ENV DEBIAN_ARCH=riscv64

View file

@ -1,4 +1,4 @@
FROM ubuntu:24.04
FROM docker.io/library/ubuntu:24.04
COPY contrib/apt-install /bin/apt-install