sha256:d1490dde9ac0d5433614e823dd605e4c876d696184f685e1dad05a80b2485bc6
OS/ARCH
Compressed size
128.55 MB
Last pushed
1 day by doijanky
Type
Image
Manifest digest
sha256:7b03ea9d327c4f9ef81847e600a0271fceb2b3f29fcf14509d5e733cd73690a6
0
LABEL maintainer="Red Hat, Inc." vendor="Red Hat, Inc."
0 B
1
LABEL url="https://catalog.redhat.com/en/search?searchType=containers"
0 B
2
LABEL com.redhat.component="ubi9-container" name="ubi9/ubi" version="9.8" cpe="cpe:/a:redhat:enterprise_linux:9::appstream" distribution-scope="public"
0 B
3
LABEL com.redhat.license_terms="https://www.redhat.com/en/about/red-hat-end-user-license-agreements#UBI"
0 B
4
LABEL summary="Provides the latest release of Red Hat Universal Base Image 9."
0 B
5
LABEL description="The Universal Base Image is designed and engineered to be the base layer for all of your containerized applications, middleware and utilities. This base image is freely redistributable, but Red Hat only supports Red Hat technologies through subscriptions for Red Hat products. This image is maintained by Red Hat and updated regularly."
0 B
6
LABEL io.k8s.description="The Universal Base Image is designed and engineered to be the base layer for all of your containerized applications, middleware and utilities. This base image is freely redistributable, but Red Hat only supports Red Hat technologies through subscriptions for Red Hat products. This image is maintained by Red Hat and updated regularly."
0 B
7
LABEL io.k8s.display-name="Red Hat Universal Base Image 9"
0 B
8
LABEL io.openshift.expose-services=""
0 B
9
LABEL io.openshift.tags="base rhel9"
0 B
10
ENV container oci
0 B
11
COPY dir:d9b6bfb0819e2a3f5b245af10eb5da9d862cdbc15ddd70bdd2fb74975da7ad81 in /
0 B
12
COPY file:1376702515d596f414e3aa494e0daa6d408a6d2475c4aeca96bf9392f5287f69 in /etc/yum.repos.d/.
0 B
13
CMD ["/bin/bash"]
0 B
14
COPY dir:35ed7d6e5d3be6a7fb396de06fc538d049cb9802e9d6f791ca9207b10bed7dfc in /usr/share/buildinfo/
0 B
15
COPY dir:35ed7d6e5d3be6a7fb396de06fc538d049cb9802e9d6f791ca9207b10bed7dfc in /root/buildinfo/
0 B
16
LABEL "org.opencontainers.image.created"="2026-08-11T02:54:02Z" "org.opencontainers.image.revision"="e2261e02ac177db555c78b0e2852b088d69d74a7" "build-date"="2026-08-11T02:54:02Z" "architecture"="aarch64" "vcs-ref"="e2261e02ac177db555c78b0e2852b088d69d74a7" "vcs-type"="git" "release"="1786416589"org.opencontainers.image.created=2026-08-11T02:54:02Z,org.opencontainers.image.revision=e2261e02ac177db555c78b0e2852b088d69d74a7
78.17 MB
18
LABEL description=Docker Container for the Swift programming language
0 B
19
ARG SWIFT_SIGNING_KEY=52BB7E3DE28A71BE22EC05FFEF80A866B47A981F
0 B
20
ARG SWIFT_PLATFORM=ubi9
0 B
21
ARG SWIFT_BRANCH=swift-6.3.3-release
0 B
22
ARG SWIFT_VERSION=swift-6.3.3-RELEASE
0 B
23
ARG SWIFT_WEBROOT=https://download.swift.org
0 B
24
ENV SWIFT_SIGNING_KEY=52BB7E3DE28A71BE22EC05FFEF80A866B47A981F SWIFT_PLATFORM=ubi9 SWIFT_BRANCH=swift-6.3.3-release SWIFT_VERSION=swift-6.3.3-RELEASE SWIFT_WEBROOT=https://download.swift.org
0 B
25
RUN |5 SWIFT_SIGNING_KEY=52BB7E3DE28A71BE22EC05FFEF80A866B47A981F SWIFT_PLATFORM=ubi9 SWIFT_BRANCH=swift-6.3.3-release SWIFT_VERSION=swift-6.3.3-RELEASE SWIFT_WEBROOT=https://download.swift.org /bin/sh -c set -e; ARCH_NAME="$(rpm --eval '%{_arch}')"; url=; case "${ARCH_NAME##*-}" in 'x86_64') OS_ARCH_SUFFIX=''; ;; 'aarch64') OS_ARCH_SUFFIX='-aarch64'; ;; *) echo >&2 "error: unsupported architecture: '$ARCH_NAME'"; exit 1 ;; esac; SWIFT_WEBDIR="$SWIFT_WEBROOT/$SWIFT_BRANCH/$(echo $SWIFT_PLATFORM | tr -d .)$OS_ARCH_SUFFIX" && SWIFT_BIN_URL="$SWIFT_WEBDIR/$SWIFT_VERSION/$SWIFT_VERSION-$SWIFT_PLATFORM$OS_ARCH_SUFFIX.tar.gz" && SWIFT_SIG_URL="$SWIFT_BIN_URL.sig" && export GNUPGHOME="$(mktemp -d)" && curl -fsSL "$SWIFT_BIN_URL" -o swift.tar.gz "$SWIFT_SIG_URL" -o swift.tar.gz.sig && gpg --batch --quiet --keyserver keyserver.ubuntu.com --recv-keys "$SWIFT_SIGNING_KEY" && gpg --batch --verify swift.tar.gz.sig swift.tar.gz && yum -y install tar gzip && tar -xzf swift.tar.gz --directory / --strip-components=1 $SWIFT_VERSION-$SWIFT_PLATFORM$OS_ARCH_SUFFIX/usr/lib/swift/linux $SWIFT_VERSION-$SWIFT_PLATFORM$OS_ARCH_SUFFIX/usr/libexec/swift/linux && chmod -R o+r /usr/lib/swift /usr/libexec/swift && rm -rf "$GNUPGHOME" swift.tar.gz.sig swift.tar.gz # buildkit
56.62 MB