mirror of
https://github.com/checkpoint-restore/criu.git
synced 2026-07-17 16:47:50 +00:00
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:
parent
a72bf212ec
commit
bcd66dc302
9 changed files with 9 additions and 9 deletions
|
|
@ -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
|
||||
|
|
|
|||
|
|
@ -1,4 +1,4 @@
|
|||
FROM rocm/pytorch:latest
|
||||
FROM docker.io/rocm/pytorch:latest
|
||||
|
||||
ARG CC=gcc
|
||||
|
||||
|
|
|
|||
|
|
@ -1 +1 @@
|
|||
FROM arm32v7/ubuntu:bionic
|
||||
FROM docker.io/arm32v7/ubuntu:bionic
|
||||
|
|
|
|||
|
|
@ -1,4 +1,4 @@
|
|||
FROM dockcross/base:latest
|
||||
FROM docker.io/dockcross/base:latest
|
||||
|
||||
ENV ARCH=mips
|
||||
ENV SUBARCH=mips
|
||||
|
|
|
|||
|
|
@ -1,4 +1,4 @@
|
|||
FROM dockcross/base:latest
|
||||
FROM docker.io/dockcross/base:latest
|
||||
|
||||
ENV ARCH=mips
|
||||
ENV SUBARCH=mips
|
||||
|
|
|
|||
|
|
@ -1,4 +1,4 @@
|
|||
FROM dockcross/base:latest
|
||||
FROM docker.io/dockcross/base:latest
|
||||
|
||||
ENV ARCH=ppc64
|
||||
ENV DEBIAN_ARCH=ppc64el
|
||||
|
|
|
|||
|
|
@ -1,4 +1,4 @@
|
|||
FROM dockcross/base:latest
|
||||
FROM docker.io/dockcross/base:latest
|
||||
|
||||
ENV ARCH=ppc64
|
||||
ENV DEBIAN_ARCH=ppc64el
|
||||
|
|
|
|||
|
|
@ -1,4 +1,4 @@
|
|||
FROM ubuntu:jammy
|
||||
FROM docker.io/library/ubuntu:jammy
|
||||
|
||||
ENV ARCH=riscv64
|
||||
ENV DEBIAN_ARCH=riscv64
|
||||
|
|
|
|||
|
|
@ -1,4 +1,4 @@
|
|||
FROM ubuntu:24.04
|
||||
FROM docker.io/library/ubuntu:24.04
|
||||
|
||||
COPY contrib/apt-install /bin/apt-install
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue