Skip to content

Commit 496d071

Browse files
authored
[libc++][CI] Use fully qualified names in docker images (NFC) (#162156)
Based on #162007 (comment), we should avoid having short links in docker images.
1 parent 578314e commit 496d071

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

libcxx/utils/ci/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -181,7 +181,7 @@ EOF
181181
# Android Builder Base Image
182182
# ===----------------------------------------------------------------------===##
183183

184-
FROM ubuntu:jammy AS android-builder-base
184+
FROM docker.io/library/ubuntu:jammy AS android-builder-base
185185

186186
ARG ANDROID_CLANG_VERSION
187187
ARG ANDROID_CLANG_PREBUILTS_COMMIT

libcxx/utils/ci/docker-compose.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ x-versions: &compiler_versions
33
LLVM_HEAD_VERSION: 22
44

55
x-image-versions: &image_versions
6-
BASE_IMAGE: ubuntu:jammy
6+
BASE_IMAGE: docker.io/library/ubuntu:jammy
77
ACTIONS_BASE_IMAGE: ghcr.io/llvm/libcxx-linux-builder-base:77cb0980bcc2675b27d08141526939423fa0be76
88

99
services:
@@ -33,7 +33,7 @@ services:
3333
dockerfile: Dockerfile
3434
target: android-buildkite-builder
3535
args:
36-
BASE_IMAGE: ubuntu:noble
36+
BASE_IMAGE: docker.io/library/ubuntu:noble
3737
ANDROID_CLANG_VERSION: r563880
3838
ANDROID_CLANG_PREBUILTS_COMMIT: 6ae4184bb8706f9731569b9a0a82be3fcdcb951c
3939
ANDROID_SYSROOT_COMMIT: f8b85cc5262c6e5cbc9a92c1bab2b18b32a4c63f

libcxx/utils/ci/vendor/android/Dockerfile.emulator

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
#
77
# ===----------------------------------------------------------------------===##
88

9-
FROM ubuntu:jammy
9+
FROM docker.io/library/ubuntu:jammy
1010

1111
RUN apt-get update && apt-get install -y \
1212
curl \

0 commit comments

Comments
 (0)