Skip to content

Instantly share code, notes, and snippets.

@jtacoma
Created January 25, 2014 21:14
Show Gist options
  • Save jtacoma/8623710 to your computer and use it in GitHub Desktop.
Save jtacoma/8623710 to your computer and use it in GitHub Desktop.
Dockerfile for ZeroMQ 4.x development
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