Skip to content

Commit ff51ee6

Browse files
authored
Merge pull request #271 from apple/swift-5.6
Add support for Swift 5.6 with x86_64 and AArch64
2 parents 17a07b2 + 0e2f481 commit ff51ee6

File tree

10 files changed

+538
-0
lines changed

10 files changed

+538
-0
lines changed

5.6/amazonlinux/2/Dockerfile

Lines changed: 65 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,65 @@
1+
FROM amazonlinux:2
2+
LABEL maintainer="Swift Infrastructure <[email protected]>"
3+
LABEL description="Docker Container for the Swift programming language"
4+
5+
RUN yum -y install \
6+
binutils \
7+
gcc \
8+
git \
9+
glibc-static \
10+
gzip \
11+
libbsd \
12+
libcurl-devel \
13+
libedit \
14+
libicu \
15+
libsqlite \
16+
libstdc++-static \
17+
libuuid \
18+
libxml2-devel \
19+
tar \
20+
tzdata \
21+
zlib-devel
22+
23+
# Everything up to here should cache nicely between Swift versions, assuming dev dependencies change little
24+
25+
# pub 4096R/ED3D1561 2019-03-22 [SC] [expires: 2023-03-23]
26+
# Key fingerprint = A62A E125 BBBF BB96 A6E0 42EC 925C C1CC ED3D 1561
27+
# uid Swift 5.x Release Signing Key <[email protected]
28+
ARG SWIFT_SIGNING_KEY=A62AE125BBBFBB96A6E042EC925CC1CCED3D1561
29+
ARG SWIFT_PLATFORM=amazonlinux2
30+
ARG SWIFT_BRANCH=swift-5.6-release
31+
ARG SWIFT_VERSION=swift-5.6-RELEASE
32+
ARG SWIFT_WEBROOT=https://download.swift.org
33+
34+
ENV SWIFT_SIGNING_KEY=$SWIFT_SIGNING_KEY \
35+
SWIFT_PLATFORM=$SWIFT_PLATFORM \
36+
SWIFT_BRANCH=$SWIFT_BRANCH \
37+
SWIFT_VERSION=$SWIFT_VERSION \
38+
SWIFT_WEBROOT=$SWIFT_WEBROOT
39+
40+
RUN set -e; \
41+
ARCH_NAME="$(arch)"; \
42+
url=; \
43+
case "${ARCH_NAME##*-}" in \
44+
'aarch64') \
45+
OS_ARCH_SUFFIX='-aarch64'; \
46+
;; \
47+
*) \
48+
OS_ARCH_SUFFIX='';\
49+
esac; \
50+
SWIFT_WEBDIR="$SWIFT_WEBROOT/$SWIFT_BRANCH/$(echo $SWIFT_PLATFORM | tr -d .)$OS_ARCH_SUFFIX" \
51+
&& SWIFT_BIN_URL="$SWIFT_WEBDIR/$SWIFT_VERSION/$SWIFT_VERSION-$SWIFT_PLATFORM$OS_ARCH_SUFFIX.tar.gz" \
52+
&& SWIFT_SIG_URL="$SWIFT_BIN_URL.sig" \
53+
&& echo $SWIFT_BIN_URL \
54+
# - Download the GPG keys, Swift toolchain, and toolchain signature, and verify.
55+
&& export GNUPGHOME="$(mktemp -d)" \
56+
&& curl -fsSL "$SWIFT_BIN_URL" -o swift.tar.gz "$SWIFT_SIG_URL" -o swift.tar.gz.sig \
57+
&& gpg --batch --quiet --keyserver keyserver.ubuntu.com --recv-keys "$SWIFT_SIGNING_KEY" \
58+
&& gpg --batch --verify swift.tar.gz.sig swift.tar.gz \
59+
# - Unpack the toolchain, set libs permissions, and clean up.
60+
&& tar -xzf swift.tar.gz --directory / --strip-components=1 \
61+
&& chmod -R o+r /usr/lib/swift \
62+
&& rm -rf "$GNUPGHOME" swift.tar.gz.sig swift.tar.gz
63+
64+
# Print Installed Swift Version
65+
RUN swift --version

5.6/amazonlinux/2/slim/Dockerfile

Lines changed: 45 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,45 @@
1+
FROM amazonlinux:2
2+
LABEL maintainer="Swift Infrastructure <[email protected]>"
3+
LABEL description="Docker Container for the Swift programming language"
4+
5+
# Everything up to here should cache nicely between Swift versions, assuming dev dependencies change little
6+
7+
# pub 4096R/ED3D1561 2019-03-22 [SC] [expires: 2023-03-23]
8+
# Key fingerprint = A62A E125 BBBF BB96 A6E0 42EC 925C C1CC ED3D 1561
9+
# uid Swift 5.x Release Signing Key <[email protected]
10+
ARG SWIFT_SIGNING_KEY=A62AE125BBBFBB96A6E042EC925CC1CCED3D1561
11+
ARG SWIFT_PLATFORM=amazonlinux2
12+
ARG SWIFT_BRANCH=swift-5.6-release
13+
ARG SWIFT_VERSION=swift-5.6-RELEASE
14+
ARG SWIFT_WEBROOT=https://download.swift.org
15+
16+
ENV SWIFT_SIGNING_KEY=$SWIFT_SIGNING_KEY \
17+
SWIFT_PLATFORM=$SWIFT_PLATFORM \
18+
SWIFT_BRANCH=$SWIFT_BRANCH \
19+
SWIFT_VERSION=$SWIFT_VERSION \
20+
SWIFT_WEBROOT=$SWIFT_WEBROOT
21+
22+
RUN set -e; \
23+
ARCH_NAME="$(arch)"; \
24+
url=; \
25+
case "${ARCH_NAME##*-}" in \
26+
'aarch64') \
27+
OS_ARCH_SUFFIX='-aarch64'; \
28+
;; \
29+
*) \
30+
OS_ARCH_SUFFIX='';\
31+
esac; \
32+
SWIFT_WEBDIR="$SWIFT_WEBROOT/$SWIFT_BRANCH/$(echo $SWIFT_PLATFORM | tr -d .)$OS_ARCH_SUFFIX" \
33+
&& SWIFT_BIN_URL="$SWIFT_WEBDIR/$SWIFT_VERSION/$SWIFT_VERSION-$SWIFT_PLATFORM$OS_ARCH_SUFFIX.tar.gz" \
34+
&& SWIFT_SIG_URL="$SWIFT_BIN_URL.sig" \
35+
# - Download the GPG keys, Swift toolchain, and toolchain signature, and verify.
36+
&& export GNUPGHOME="$(mktemp -d)" \
37+
&& curl -fsSL "$SWIFT_BIN_URL" -o swift.tar.gz "$SWIFT_SIG_URL" -o swift.tar.gz.sig \
38+
&& gpg --batch --quiet --keyserver keyserver.ubuntu.com --recv-keys "$SWIFT_SIGNING_KEY" \
39+
&& gpg --batch --verify swift.tar.gz.sig swift.tar.gz \
40+
# - Unpack the toolchain, set libs permissions, and clean up.
41+
&& yum -y install tar gzip \
42+
&& tar -xzf swift.tar.gz --directory / --strip-components=1 $SWIFT_VERSION-$SWIFT_PLATFORM$OS_ARCH_SUFFIX/usr/lib/swift/linux \
43+
&& chmod -R o+r /usr/lib/swift \
44+
&& rm -rf "$GNUPGHOME" swift.tar.gz.sig swift.tar.gz \
45+
&& yum autoremove -y tar gzip

5.6/centos/7/Dockerfile

Lines changed: 56 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,56 @@
1+
FROM centos:7
2+
LABEL maintainer="Swift Infrastructure <[email protected]>"
3+
LABEL description="Docker Container for the Swift programming language"
4+
5+
RUN yum install shadow-utils.x86_64 -y \
6+
binutils \
7+
gcc \
8+
git \
9+
glibc-static \
10+
libbsd-devel \
11+
libcurl-devel \
12+
libedit \
13+
libedit-devel \
14+
libicu-devel \
15+
libstdc++-static \
16+
libxml2-devel \
17+
pkg-config \
18+
python3 \
19+
sqlite \
20+
zlib-devel
21+
22+
RUN sed -i -e 's/\*__block/\*__libc_block/g' /usr/include/unistd.h
23+
24+
# Everything up to here should cache nicely between Swift versions, assuming dev dependencies change little
25+
26+
# pub 4096R/ED3D1561 2019-03-22 [SC] [expires: 2023-03-23]
27+
# Key fingerprint = A62A E125 BBBF BB96 A6E0 42EC 925C C1CC ED3D 1561
28+
# uid Swift 5.x Release Signing Key <[email protected]
29+
ARG SWIFT_SIGNING_KEY=A62AE125BBBFBB96A6E042EC925CC1CCED3D1561
30+
ARG SWIFT_PLATFORM=centos7
31+
ARG SWIFT_BRANCH=swift-5.6-release
32+
ARG SWIFT_VERSION=swift-5.6-RELEASE
33+
ARG SWIFT_WEBROOT=https://download.swift.org
34+
35+
ENV SWIFT_SIGNING_KEY=$SWIFT_SIGNING_KEY \
36+
SWIFT_PLATFORM=$SWIFT_PLATFORM \
37+
SWIFT_BRANCH=$SWIFT_BRANCH \
38+
SWIFT_VERSION=$SWIFT_VERSION \
39+
SWIFT_WEBROOT=$SWIFT_WEBROOT
40+
41+
RUN set -e; \
42+
SWIFT_WEBDIR="$SWIFT_WEBROOT/$SWIFT_BRANCH/$(echo $SWIFT_PLATFORM | tr -d .)" \
43+
&& SWIFT_BIN_URL="$SWIFT_WEBDIR/$SWIFT_VERSION/$SWIFT_VERSION-$SWIFT_PLATFORM.tar.gz" \
44+
&& SWIFT_SIG_URL="$SWIFT_BIN_URL.sig" \
45+
# - Download the GPG keys, Swift toolchain, and toolchain signature, and verify.
46+
&& export GNUPGHOME="$(mktemp -d)" \
47+
&& curl -fsSL "$SWIFT_BIN_URL" -o swift.tar.gz "$SWIFT_SIG_URL" -o swift.tar.gz.sig \
48+
&& gpg --batch --quiet --keyserver keyserver.ubuntu.com --recv-keys "$SWIFT_SIGNING_KEY" \
49+
&& gpg --batch --verify swift.tar.gz.sig swift.tar.gz \
50+
# - Unpack the toolchain, set libs permissions, and clean up.
51+
&& tar -xzf swift.tar.gz --directory / --strip-components=1 \
52+
&& chmod -R o+r /usr/lib/swift \
53+
&& rm -rf "$GNUPGHOME" swift.tar.gz.sig swift.tar.gz
54+
55+
# Print Installed Swift Version
56+
RUN swift --version

5.6/centos/7/slim/Dockerfile

Lines changed: 34 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,34 @@
1+
FROM centos:7
2+
LABEL maintainer="Swift Infrastructure <[email protected]>"
3+
LABEL description="Docker Container for the Swift programming language"
4+
5+
# Everything up to here should cache nicely between Swift versions, assuming dev dependencies change little
6+
7+
# pub 4096R/ED3D1561 2019-03-22 [SC] [expires: 2023-03-23]
8+
# Key fingerprint = A62A E125 BBBF BB96 A6E0 42EC 925C C1CC ED3D 1561
9+
# uid Swift 5.x Release Signing Key <[email protected]
10+
ARG SWIFT_SIGNING_KEY=A62AE125BBBFBB96A6E042EC925CC1CCED3D1561
11+
ARG SWIFT_PLATFORM=centos7
12+
ARG SWIFT_BRANCH=swift-5.6-release
13+
ARG SWIFT_VERSION=swift-5.6-RELEASE
14+
ARG SWIFT_WEBROOT=https://download.swift.org
15+
16+
ENV SWIFT_SIGNING_KEY=$SWIFT_SIGNING_KEY \
17+
SWIFT_PLATFORM=$SWIFT_PLATFORM \
18+
SWIFT_BRANCH=$SWIFT_BRANCH \
19+
SWIFT_VERSION=$SWIFT_VERSION \
20+
SWIFT_WEBROOT=$SWIFT_WEBROOT
21+
22+
RUN set -e; \
23+
SWIFT_WEBDIR="$SWIFT_WEBROOT/$SWIFT_BRANCH/$(echo $SWIFT_PLATFORM | tr -d .)" \
24+
&& SWIFT_BIN_URL="$SWIFT_WEBDIR/$SWIFT_VERSION/$SWIFT_VERSION-$SWIFT_PLATFORM.tar.gz" \
25+
&& SWIFT_SIG_URL="$SWIFT_BIN_URL.sig" \
26+
# - Download the GPG keys, Swift toolchain, and toolchain signature, and verify.
27+
&& export GNUPGHOME="$(mktemp -d)" \
28+
&& curl -fsSL "$SWIFT_BIN_URL" -o swift.tar.gz "$SWIFT_SIG_URL" -o swift.tar.gz.sig \
29+
&& gpg --batch --quiet --keyserver keyserver.ubuntu.com --recv-keys "$SWIFT_SIGNING_KEY" \
30+
&& gpg --batch --verify swift.tar.gz.sig swift.tar.gz \
31+
# - Unpack the toolchain, set libs permissions, and clean up.
32+
&& tar -xzf swift.tar.gz --directory / --strip-components=1 $SWIFT_VERSION-$SWIFT_PLATFORM/usr/lib/swift/linux \
33+
&& chmod -R o+r /usr/lib/swift \
34+
&& rm -rf "$GNUPGHOME" swift.tar.gz.sig swift.tar.gz

5.6/centos/8/Dockerfile

Lines changed: 67 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,67 @@
1+
FROM quay.io/centos/centos:stream8
2+
LABEL maintainer="Swift Infrastructure <[email protected]>"
3+
LABEL description="Docker Container for the Swift programming language"
4+
5+
RUN yum install -y https://dl.fedoraproject.org/pub/epel/epel-release-latest-8.noarch.rpm
6+
7+
RUN yum install --enablerepo=powertools -y \
8+
binutils \
9+
gcc \
10+
git \
11+
glibc-static \
12+
libbsd-devel \
13+
libcurl-devel \
14+
libedit \
15+
libedit-devel \
16+
libicu-devel \
17+
libstdc++-static \
18+
libxml2-devel \
19+
pkg-config \
20+
python3 \
21+
sqlite \
22+
zlib-devel
23+
24+
RUN ln -s /usr/bin/python3 /usr/bin/python
25+
26+
# Everything up to here should cache nicely between Swift versions, assuming dev dependencies change little
27+
28+
# pub 4096R/ED3D1561 2019-03-22 [SC] [expires: 2023-03-23]
29+
# Key fingerprint = A62A E125 BBBF BB96 A6E0 42EC 925C C1CC ED3D 1561
30+
# uid Swift 5.x Release Signing Key <[email protected]
31+
ARG SWIFT_SIGNING_KEY=A62AE125BBBFBB96A6E042EC925CC1CCED3D1561
32+
ARG SWIFT_PLATFORM=centos8
33+
ARG SWIFT_BRANCH=swift-5.6-release
34+
ARG SWIFT_VERSION=swift-5.6-RELEASE
35+
ARG SWIFT_WEBROOT=https://download.swift.org
36+
37+
ENV SWIFT_SIGNING_KEY=$SWIFT_SIGNING_KEY \
38+
SWIFT_PLATFORM=$SWIFT_PLATFORM \
39+
SWIFT_BRANCH=$SWIFT_BRANCH \
40+
SWIFT_VERSION=$SWIFT_VERSION \
41+
SWIFT_WEBROOT=$SWIFT_WEBROOT
42+
43+
RUN set -e; \
44+
ARCH_NAME="$(arch)"; \
45+
url=; \
46+
case "${ARCH_NAME##*-}" in \
47+
'aarch64') \
48+
OS_ARCH_SUFFIX='-aarch64'; \
49+
;; \
50+
*) \
51+
OS_ARCH_SUFFIX='';\
52+
esac; \
53+
SWIFT_WEBDIR="$SWIFT_WEBROOT/$SWIFT_BRANCH/$(echo $SWIFT_PLATFORM | tr -d .)$OS_ARCH_SUFFIX" \
54+
&& SWIFT_BIN_URL="$SWIFT_WEBDIR/$SWIFT_VERSION/$SWIFT_VERSION-$SWIFT_PLATFORM$OS_ARCH_SUFFIX.tar.gz" \
55+
&& SWIFT_SIG_URL="$SWIFT_BIN_URL.sig" \
56+
# - Download the GPG keys, Swift toolchain, and toolchain signature, and verify.
57+
&& export GNUPGHOME="$(mktemp -d)" \
58+
&& curl -fsSL "$SWIFT_BIN_URL" -o swift.tar.gz "$SWIFT_SIG_URL" -o swift.tar.gz.sig \
59+
&& gpg --batch --quiet --keyserver keyserver.ubuntu.com --recv-keys "$SWIFT_SIGNING_KEY" \
60+
&& gpg --batch --verify swift.tar.gz.sig swift.tar.gz \
61+
# - Unpack the toolchain, set libs permissions, and clean up.
62+
&& tar -xzf swift.tar.gz --directory / --strip-components=1 \
63+
&& chmod -R o+r /usr/lib/swift \
64+
&& rm -rf "$GNUPGHOME" swift.tar.gz.sig swift.tar.gz
65+
66+
# Print Installed Swift Version
67+
RUN swift --version

5.6/centos/8/slim/Dockerfile

Lines changed: 43 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,43 @@
1+
FROM quay.io/centos/centos:stream8
2+
LABEL maintainer="Swift Infrastructure <[email protected]>"
3+
LABEL description="Docker Container for the Swift programming language"
4+
5+
# Everything up to here should cache nicely between Swift versions, assuming dev dependencies change little
6+
7+
# pub 4096R/ED3D1561 2019-03-22 [SC] [expires: 2023-03-23]
8+
# Key fingerprint = A62A E125 BBBF BB96 A6E0 42EC 925C C1CC ED3D 1561
9+
# uid Swift 5.x Release Signing Key <[email protected]
10+
ARG SWIFT_SIGNING_KEY=A62AE125BBBFBB96A6E042EC925CC1CCED3D1561
11+
ARG SWIFT_PLATFORM=centos8
12+
ARG SWIFT_BRANCH=swift-5.6-release
13+
ARG SWIFT_VERSION=swift-5.6-RELEASE
14+
ARG SWIFT_WEBROOT=https://download.swift.org
15+
16+
ENV SWIFT_SIGNING_KEY=$SWIFT_SIGNING_KEY \
17+
SWIFT_PLATFORM=$SWIFT_PLATFORM \
18+
SWIFT_BRANCH=$SWIFT_BRANCH \
19+
SWIFT_VERSION=$SWIFT_VERSION \
20+
SWIFT_WEBROOT=$SWIFT_WEBROOT
21+
22+
RUN set -e; \
23+
ARCH_NAME="$(arch)"; \
24+
url=; \
25+
case "${ARCH_NAME##*-}" in \
26+
'aarch64') \
27+
OS_ARCH_SUFFIX='-aarch64'; \
28+
;; \
29+
*) \
30+
OS_ARCH_SUFFIX='';\
31+
esac; \
32+
SWIFT_WEBDIR="$SWIFT_WEBROOT/$SWIFT_BRANCH/$(echo $SWIFT_PLATFORM | tr -d .)$OS_ARCH_SUFFIX" \
33+
&& SWIFT_BIN_URL="$SWIFT_WEBDIR/$SWIFT_VERSION/$SWIFT_VERSION-$SWIFT_PLATFORM$OS_ARCH_SUFFIX.tar.gz" \
34+
&& SWIFT_SIG_URL="$SWIFT_BIN_URL.sig" \
35+
# - Download the GPG keys, Swift toolchain, and toolchain signature, and verify.
36+
&& export GNUPGHOME="$(mktemp -d)" \
37+
&& curl -fsSL "$SWIFT_BIN_URL" -o swift.tar.gz "$SWIFT_SIG_URL" -o swift.tar.gz.sig \
38+
&& gpg --batch --quiet --keyserver keyserver.ubuntu.com --recv-keys "$SWIFT_SIGNING_KEY" \
39+
&& gpg --batch --verify swift.tar.gz.sig swift.tar.gz \
40+
# - Unpack the toolchain, set libs permissions, and clean up.
41+
&& tar -xzf swift.tar.gz --directory / --strip-components=1 $SWIFT_VERSION-$SWIFT_PLATFORM$OS_ARCH_SUFFIX/usr/lib/swift/linux \
42+
&& chmod -R o+r /usr/lib/swift \
43+
&& rm -rf "$GNUPGHOME" swift.tar.gz.sig swift.tar.gz

5.6/ubuntu/18.04/Dockerfile

Lines changed: 59 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,59 @@
1+
FROM ubuntu:18.04
2+
LABEL maintainer="Swift Infrastructure <[email protected]>"
3+
LABEL Description="Docker Container for the Swift programming language"
4+
5+
RUN export DEBIAN_FRONTEND=noninteractive DEBCONF_NONINTERACTIVE_SEEN=true && apt-get -q update && \
6+
apt-get -q install -y \
7+
libatomic1 \
8+
libcurl4-openssl-dev \
9+
libxml2-dev \
10+
libedit2 \
11+
libsqlite3-0 \
12+
libc6-dev \
13+
binutils \
14+
libgcc-5-dev \
15+
libstdc++-5-dev \
16+
zlib1g-dev \
17+
libpython3.6 \
18+
tzdata \
19+
git \
20+
pkg-config \
21+
&& rm -r /var/lib/apt/lists/*
22+
23+
# Everything up to here should cache nicely between Swift versions, assuming dev dependencies change little
24+
25+
# pub 4096R/ED3D1561 2019-03-22 [SC] [expires: 2023-03-23]
26+
# Key fingerprint = A62A E125 BBBF BB96 A6E0 42EC 925C C1CC ED3D 1561
27+
# uid Swift 5.x Release Signing Key <[email protected]
28+
ARG SWIFT_SIGNING_KEY=A62AE125BBBFBB96A6E042EC925CC1CCED3D1561
29+
ARG SWIFT_PLATFORM=ubuntu18.04
30+
ARG SWIFT_BRANCH=swift-5.6-release
31+
ARG SWIFT_VERSION=swift-5.6-RELEASE
32+
ARG SWIFT_WEBROOT=https://download.swift.org
33+
34+
ENV SWIFT_SIGNING_KEY=$SWIFT_SIGNING_KEY \
35+
SWIFT_PLATFORM=$SWIFT_PLATFORM \
36+
SWIFT_BRANCH=$SWIFT_BRANCH \
37+
SWIFT_VERSION=$SWIFT_VERSION \
38+
SWIFT_WEBROOT=$SWIFT_WEBROOT
39+
40+
RUN set -e; \
41+
SWIFT_WEBDIR="$SWIFT_WEBROOT/$SWIFT_BRANCH/$(echo $SWIFT_PLATFORM | tr -d .)" \
42+
&& SWIFT_BIN_URL="$SWIFT_WEBDIR/$SWIFT_VERSION/$SWIFT_VERSION-$SWIFT_PLATFORM.tar.gz" \
43+
&& SWIFT_SIG_URL="$SWIFT_BIN_URL.sig" \
44+
# - Grab curl here so we cache better up above
45+
&& export DEBIAN_FRONTEND=noninteractive \
46+
&& apt-get -q update && apt-get -q install -y curl && rm -rf /var/lib/apt/lists/* \
47+
# - Download the GPG keys, Swift toolchain, and toolchain signature, and verify.
48+
&& export GNUPGHOME="$(mktemp -d)" \
49+
&& curl -fsSL "$SWIFT_BIN_URL" -o swift.tar.gz "$SWIFT_SIG_URL" -o swift.tar.gz.sig \
50+
&& gpg --batch --quiet --keyserver keyserver.ubuntu.com --recv-keys "$SWIFT_SIGNING_KEY" \
51+
&& gpg --batch --verify swift.tar.gz.sig swift.tar.gz \
52+
# - Unpack the toolchain, set libs permissions, and clean up.
53+
&& tar -xzf swift.tar.gz --directory / --strip-components=1 \
54+
&& chmod -R o+r /usr/lib/swift \
55+
&& rm -rf "$GNUPGHOME" swift.tar.gz.sig swift.tar.gz \
56+
&& apt-get purge --auto-remove -y curl
57+
58+
# Print Installed Swift Version
59+
RUN swift --version

0 commit comments

Comments
 (0)