Skip to content

Instantly share code, notes, and snippets.

@loganwright
Created February 17, 2016 21:36
Show Gist options
  • Save loganwright/9a03b89e1d710256b980 to your computer and use it in GitHub Desktop.
Save loganwright/9a03b89e1d710256b980 to your computer and use it in GitHub Desktop.
Zewo Docker File
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