Skip to content

Instantly share code, notes, and snippets.

@jostly
Created December 3, 2015 22:04
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
Star You must be signed in to star a gist
Save jostly/a9fbdecaa2e445ecabe9 to your computer and use it in GitHub Desktop.
Dockerfile for running Swift 2.2 development snapshot on Ubuntu 15.10
FROM ubuntu:15.10
WORKDIR /root
RUN apt-get -y update
RUN apt-get -y install clang curl libpython2.7 libicu55
RUN curl -o swift.tgz https://swift.org/builds/ubuntu1510/swift-2.2-SNAPSHOT-2015-12-01-b/swift-2.2-SNAPSHOT-2015-12-01-b-ubuntu15.10.tar.gz
RUN tar --strip-components=1 -C / -xzf swift.tgz
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment