Created
January 25, 2014 21:14
-
-
Save jtacoma/8623710 to your computer and use it in GitHub Desktop.
Dockerfile for ZeroMQ 4.x development
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 ubuntu | |
MAINTAINER Joshua Tacoma <[email protected]> | |
RUN apt-get install -y build-essential git libtool | |
RUN git clone https://github.com/jedisct1/libsodium && cd libsodium && ./autogen.sh && ./configure && make check install && ldconfig && cd .. | |
RUN git clone https://github.com/zeromq/zeromq4-x && cd zeromq4-x && ./autogen.sh && ./configure && make check install && ldconfig && cd .. | |
RUN git clone https://github.com/zeromq/czmq && cd czmq && ./autogen.sh && ./configure && make check install && ldconfig && cd .. |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment