Skip to content

Commit 4d2d213

Browse files
[NFC][CI] Use Fully Qualified Names for All Containers
Fix the rest of the containers sitting around in the monorepo.
1 parent 496d071 commit 4d2d213

File tree

5 files changed

+7
-7
lines changed

5 files changed

+7
-7
lines changed

clang/utils/analyzer/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
FROM ubuntu:bionic
1+
FROM docker.io/ubuntu:bionic
22

33
RUN apt-get update && apt-get install -y \
44
apt-transport-https \

libc/utils/buildbot/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
FROM debian:10
1+
FROM docker.io/debian:10
22

33
# Installing dependencies.
44
RUN dpkg --add-architecture i386

llvm/utils/docker/example/Dockerfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010

1111
# Stage 1. Check out LLVM source code and run the build.
1212
# FIXME: Replace 'ubuntu' with your base image
13-
FROM ubuntu AS builder
13+
FROM docker.io/ubuntu AS builder
1414
# FIXME: Change maintainer name
1515
LABEL maintainer="Maintainer <maintainer@email>"
1616
# 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
2929

3030
# Stage 2. Produce a minimal release image with build results.
3131
# FIXME: Replace 'ubuntu' with your base image.
32-
FROM ubuntu
32+
FROM docker.io/ubuntu
3333
# FIXME: Change maintainer name.
3434
LABEL maintainer="Maintainer <maintainer@email>"
3535
# FIXME: Install all packages you want to have in your release container.

llvm/utils/docker/nvidia-cuda/Dockerfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
#
77
#===----------------------------------------------------------------------===//
88
# Stage 1. Check out LLVM source code and run the build.
9-
FROM nvidia/cuda:12.6.3-devel-ubuntu24.04 AS builder
9+
FROM docker.io/nvidia/cuda:12.6.3-devel-ubuntu24.04 AS builder
1010
LABEL maintainer="LLVM Developers"
1111
# Install llvm build dependencies.
1212
RUN apt-get update && \
@@ -26,7 +26,7 @@ RUN /tmp/scripts/build_install_llvm.sh --to /tmp/clang-install ${buildscript_arg
2626

2727

2828
# Stage 2. Produce a minimal release image with build results.
29-
FROM nvidia/cuda:12.6.3-devel-ubuntu24.04
29+
FROM docker.io/nvidia/cuda:12.6.3-devel-ubuntu24.04
3030
LABEL maintainer="LLVM Developers"
3131
# Copy clang installation into this container.
3232
COPY --from=builder /tmp/clang-install/ /usr/local/

polly/lib/External/isl/imath/tests/linux/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
#
55
# docker run --rm -it "$(docker build -f tests/linux/Dockerfile -q .)"
66
#
7-
FROM alpine:latest AS base
7+
FROM docker.io/alpine:latest AS base
88

99
RUN apk add --no-cache bash build-base gcc gmp-dev make python2
1010

0 commit comments

Comments
 (0)