Skip to content

Instantly share code, notes, and snippets.

@jc00ke
Created December 8, 2017 04:36
Show Gist options
  • Save jc00ke/b9f421a25ce0c6882be6e5dd14fc8ed0 to your computer and use it in GitHub Desktop.
Save jc00ke/b9f421a25ce0c6882be6e5dd14fc8ed0 to your computer and use it in GitHub Desktop.
Dockerfile for Swift 4
FROM ubuntu:16.04
LABEL maintainer="Haris Amin <[email protected]>"
LABEL Description="Docker Container for the Apple's Swift programming language"
# Yoinked from
# https://github.com/swiftdocker/docker-swift/blob/5c83628d4696bca62aec3136a4ee9b854e8d548e/4.0/Dockerfile
# Install related packages and set LLVM 3.8 as the compiler
RUN apt-get -q update && \
apt-get -q install -y \
make \
libc6-dev \
clang-3.8 \
curl \
libedit-dev \
libpython2.7 \
libicu-dev \
libssl-dev \
libxml2 \
git \
libcurl4-openssl-dev \
pkg-config \
&& update-alternatives --quiet --install /usr/bin/clang clang /usr/bin/clang-3.8 100 \
&& update-alternatives --quiet --install /usr/bin/clang++ clang++ /usr/bin/clang++-3.8 100 \
&& rm -r /var/lib/apt/lists/*
# Everything up to here should cache nicely between Swift versions, assuming dev dependencies change little
ARG SWIFT_PLATFORM=ubuntu16.04
ARG SWIFT_BRANCH=swift-4.0.2-release
ARG SWIFT_VERSION=swift-4.0.2-RELEASE
ENV SWIFT_PLATFORM=$SWIFT_PLATFORM \
SWIFT_BRANCH=$SWIFT_BRANCH \
SWIFT_VERSION=$SWIFT_VERSION
# Download GPG keys, signature and Swift package, then unpack, cleanup and execute permissions for foundation libs
RUN SWIFT_URL=https://swift.org/builds/$SWIFT_BRANCH/$(echo "$SWIFT_PLATFORM" | tr -d .)/$SWIFT_VERSION/$SWIFT_VERSION-$SWIFT_PLATFORM.tar.gz \
&& curl -fSsL $SWIFT_URL -o swift.tar.gz \
&& curl -fSsL $SWIFT_URL.sig -o swift.tar.gz.sig \
&& export GNUPGHOME="$(mktemp -d)" \
&& set -e; \
for key in \
# pub rsa4096 2017-11-07 [SC] [expires: 2019-11-07]
# 8513444E2DA36B7C1659AF4D7638F1FB2B2B08C4
# uid [ unknown] Swift Automatic Signing Key #2 <[email protected]>
8513444E2DA36B7C1659AF4D7638F1FB2B2B08C4 \
# pub 4096R/91D306C6 2016-05-31 [expires: 2018-05-31]
# Key fingerprint = A3BA FD35 56A5 9079 C068 94BD 63BC 1CFE 91D3 06C6
# uid Swift 3.x Release Signing Key <[email protected]>
A3BAFD3556A59079C06894BD63BC1CFE91D306C6 \
# pub 4096R/71E1B235 2016-05-31 [expires: 2019-06-14]
# Key fingerprint = 5E4D F843 FB06 5D7F 7E24 FBA2 EF54 30F0 71E1 B235
# uid Swift 4.x Release Signing Key <[email protected]>
5E4DF843FB065D7F7E24FBA2EF5430F071E1B235 \
; do \
gpg --quiet --keyserver ha.pool.sks-keyservers.net --recv-keys "$key"; \
done \
&& gpg --batch --verify --quiet swift.tar.gz.sig swift.tar.gz \
&& tar -xzf swift.tar.gz --directory / --strip-components=1 \
&& rm -r "$GNUPGHOME" swift.tar.gz.sig swift.tar.gz \
&& chmod -R o+r /usr/lib/swift
# Print Installed Swift Version
RUN swift --version
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment