[llvm] 4d2d213 - [NFC][CI] Use Fully Qualified Names for All Containers
Aiden Grossman via llvm-commits
llvm-commits at lists.llvm.org
Wed Oct 8 15:09:29 PDT 2025
Author: Aiden Grossman
Date: 2025-10-08T22:08:46Z
New Revision: 4d2d21331bf058cf901d30a9b902008e0a8e9e20
URL: https://github.com/llvm/llvm-project/commit/4d2d21331bf058cf901d30a9b902008e0a8e9e20
DIFF: https://github.com/llvm/llvm-project/commit/4d2d21331bf058cf901d30a9b902008e0a8e9e20.diff
LOG: [NFC][CI] Use Fully Qualified Names for All Containers
Fix the rest of the containers sitting around in the monorepo.
Added:
Modified:
clang/utils/analyzer/Dockerfile
libc/utils/buildbot/Dockerfile
llvm/utils/docker/example/Dockerfile
llvm/utils/docker/nvidia-cuda/Dockerfile
polly/lib/External/isl/imath/tests/linux/Dockerfile
Removed:
################################################################################
diff --git a/clang/utils/analyzer/Dockerfile b/clang/utils/analyzer/Dockerfile
index cc73ed973b811..f908cbe72d84b 100644
--- a/clang/utils/analyzer/Dockerfile
+++ b/clang/utils/analyzer/Dockerfile
@@ -1,4 +1,4 @@
-FROM ubuntu:bionic
+FROM docker.io/ubuntu:bionic
RUN apt-get update && apt-get install -y \
apt-transport-https \
diff --git a/libc/utils/buildbot/Dockerfile b/libc/utils/buildbot/Dockerfile
index 8c497be6db0cc..bbca8dfe70b08 100644
--- a/libc/utils/buildbot/Dockerfile
+++ b/libc/utils/buildbot/Dockerfile
@@ -1,4 +1,4 @@
-FROM debian:10
+FROM docker.io/debian:10
# Installing dependencies.
RUN dpkg --add-architecture i386
diff --git a/llvm/utils/docker/example/Dockerfile b/llvm/utils/docker/example/Dockerfile
index 197716fa7bdff..39990c040d05a 100644
--- a/llvm/utils/docker/example/Dockerfile
+++ b/llvm/utils/docker/example/Dockerfile
@@ -10,7 +10,7 @@
# Stage 1. Check out LLVM source code and run the build.
# FIXME: Replace 'ubuntu' with your base image
-FROM ubuntu AS builder
+FROM docker.io/ubuntu AS builder
# FIXME: Change maintainer name
LABEL maintainer="Maintainer <maintainer at email>"
# FIXME: Install llvm/clang build dependencies here. Including compiler to
@@ -29,7 +29,7 @@ RUN /tmp/scripts/build_install_llvm.sh --to /tmp/clang-install ${buildscript_arg
# Stage 2. Produce a minimal release image with build results.
# FIXME: Replace 'ubuntu' with your base image.
-FROM ubuntu
+FROM docker.io/ubuntu
# FIXME: Change maintainer name.
LABEL maintainer="Maintainer <maintainer at email>"
# FIXME: Install all packages you want to have in your release container.
diff --git a/llvm/utils/docker/nvidia-cuda/Dockerfile b/llvm/utils/docker/nvidia-cuda/Dockerfile
index 035c5825df0fd..f4fb3ccd08802 100644
--- a/llvm/utils/docker/nvidia-cuda/Dockerfile
+++ b/llvm/utils/docker/nvidia-cuda/Dockerfile
@@ -6,7 +6,7 @@
#
#===----------------------------------------------------------------------===//
# Stage 1. Check out LLVM source code and run the build.
-FROM nvidia/cuda:12.6.3-devel-ubuntu24.04 AS builder
+FROM docker.io/nvidia/cuda:12.6.3-devel-ubuntu24.04 AS builder
LABEL maintainer="LLVM Developers"
# Install llvm build dependencies.
RUN apt-get update && \
@@ -26,7 +26,7 @@ RUN /tmp/scripts/build_install_llvm.sh --to /tmp/clang-install ${buildscript_arg
# Stage 2. Produce a minimal release image with build results.
-FROM nvidia/cuda:12.6.3-devel-ubuntu24.04
+FROM docker.io/nvidia/cuda:12.6.3-devel-ubuntu24.04
LABEL maintainer="LLVM Developers"
# Copy clang installation into this container.
COPY --from=builder /tmp/clang-install/ /usr/local/
diff --git a/polly/lib/External/isl/imath/tests/linux/Dockerfile b/polly/lib/External/isl/imath/tests/linux/Dockerfile
index 50e1a91e8f530..67021378b7fe7 100644
--- a/polly/lib/External/isl/imath/tests/linux/Dockerfile
+++ b/polly/lib/External/isl/imath/tests/linux/Dockerfile
@@ -4,7 +4,7 @@
#
# docker run --rm -it "$(docker build -f tests/linux/Dockerfile -q .)"
#
-FROM alpine:latest AS base
+FROM docker.io/alpine:latest AS base
RUN apk add --no-cache bash build-base gcc gmp-dev make python2
More information about the llvm-commits
mailing list