We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d846fbf commit a62e6f4Copy full SHA for a62e6f4
Dockerfile
@@ -0,0 +1,11 @@
1
+FROM ubuntu:14.04
2
+
3
+MAINTAINER ZeroMQ Project <[email protected]>
4
5
+RUN apt-get update
6
+RUN DEBIAN_FRONTEND=noninteractive apt-get install -y git build-essential libtool autoconf automake pkg-config unzip libkrb5-dev
7
+RUN cd /tmp && git clone git://github.com/jedisct1/libsodium.git && cd libsodium && git checkout e2a30a && ./autogen.sh && ./configure && make check && make install && ldconfig
8
+RUN cd /tmp && git clone --depth 1 git://github.com/zeromq/libzmq.git && cd libzmq && ./autogen.sh && ./configure && make
9
+# RUN cd /tmp/libzmq && make check
10
+RUN cd /tmp/libzmq && make install && ldconfig
11
+RUN rm /tmp/* -rf
0 commit comments