Created
December 5, 2015 03:02
-
-
Save gnue/0283a8ca85aae871ab6d to your computer and use it in GitHub Desktop.
docker swift 2.2-SNAPSHOT
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# swift | |
# | |
# VERSION 0.0.1 | |
FROM ubuntu:15.10 | |
MAINTAINER gnue | |
RUN apt-get update \ | |
&& apt-get install -y curl libedit-dev libicu-dev libpython2.7 \ | |
&& apt-get clean | |
ENV SWIFTBIN="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 curl "$SWIFTBIN" | tar xz --strip=1 | |
ENTRYPOINT ["/bin/bash"] |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment