2022-02-10 06:26:51 UTC
287 MB
/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin
SWIFT_BRANCHswift-5.5.3-release
SWIFT_PLATFORMamazonlinux2
SWIFT_SIGNING_KEYA62AE125BBBFBB96A6E042EC925CC1CCED3D1561
SWIFT_VERSIONswift-5.5.3-RELEASE
SWIFT_WEBROOThttps://download.swift.org
[#000] sha256:69e49d0477d7418fa8148e4dd5ab6e7b541cf2bdf558ddd0198722553d8ecfb8 - 20.81% (59.8 MB)
[#001] sha256:0b28025f40b168f1ee6d5aac61c6bb15b923933f3ad1142baf84c7a799984825 - 79.19% (227 MB)
COPY /rootfs/ / # buildkit
2022-02-10 06:26:51 UTC (buildkit.dockerfile.v0)CMD ["/bin/bash"]
2022-02-10 06:26:51 UTC (buildkit.dockerfile.v0)LABEL maintainer=Swift Infrastructure <swift-infrastructure@forums.swift.org>
2022-02-10 06:26:51 UTC (buildkit.dockerfile.v0)LABEL description=Docker Container for the Swift programming language
2022-02-10 06:26:51 UTC (buildkit.dockerfile.v0)ARG SWIFT_SIGNING_KEY=A62AE125BBBFBB96A6E042EC925CC1CCED3D1561
2022-02-10 06:26:51 UTC (buildkit.dockerfile.v0)ARG SWIFT_PLATFORM=amazonlinux2
2022-02-10 06:26:51 UTC (buildkit.dockerfile.v0)ARG SWIFT_BRANCH=swift-5.5.3-release
2022-02-10 06:26:51 UTC (buildkit.dockerfile.v0)ARG SWIFT_VERSION=swift-5.5.3-RELEASE
2022-02-10 06:26:51 UTC (buildkit.dockerfile.v0)ARG SWIFT_WEBROOT=https://download.swift.org
2022-02-10 06:26:51 UTC (buildkit.dockerfile.v0)ENV SWIFT_SIGNING_KEY=A62AE125BBBFBB96A6E042EC925CC1CCED3D1561 SWIFT_PLATFORM=amazonlinux2 SWIFT_BRANCH=swift-5.5.3-release SWIFT_VERSION=swift-5.5.3-RELEASE SWIFT_WEBROOT=https://download.swift.org
2022-02-10 06:26:51 UTC (buildkit.dockerfile.v0)RUN |5 SWIFT_SIGNING_KEY=A62AE125BBBFBB96A6E042EC925CC1CCED3D1561 SWIFT_PLATFORM=amazonlinux2 SWIFT_BRANCH=swift-5.5.3-release SWIFT_VERSION=swift-5.5.3-RELEASE SWIFT_WEBROOT=https://download.swift.org /bin/sh -c set -e; SWIFT_WEBDIR="$SWIFT_WEBROOT/$SWIFT_BRANCH/$(echo $SWIFT_PLATFORM | tr -d .)" && SWIFT_BIN_URL="$SWIFT_WEBDIR/$SWIFT_VERSION/$SWIFT_VERSION-$SWIFT_PLATFORM.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/usr/lib/swift/linux && chmod -R o+r /usr/lib/swift && rm -rf "$GNUPGHOME" swift.tar.gz.sig swift.tar.gz && yum autoremove -y tar gzip # buildkit
Please be careful as this will not just delete the reference but also the actual content!
For example when you have latest and v1.2.3 both pointing to the same image
the deletion of latest will also permanently remove v1.2.3.