Created
February 17, 2016 21:36
-
-
Save loganwright/9a03b89e1d710256b980 to your computer and use it in GitHub Desktop.
Zewo Docker File
This file contains hidden or 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
from swiftdocker/swift | |
ENV DEBIAN_FRONTEND=noninteractive | |
run apt-get update; apt-get install -y libssl-dev | |
run mkdir /deps | |
workdir /deps | |
env zewo_version=0.2.0 | |
run git clone https://github.com/Zewo/libvenice.git && \ | |
git clone https://github.com/Zewo/uri_parser.git && \ | |
git clone https://github.com/Zewo/http_parser.git | |
run for d in ./*/ ; do (cd "$d" && git checkout tags/$zewo_version && make && make install); done | |
workdir / |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment