Skip to content

Commit a62e6f4

Browse files
author
Trevor Bernard
committed
Add Docker support
1 parent d846fbf commit a62e6f4

File tree

1 file changed

+11
-0
lines changed

1 file changed

+11
-0
lines changed

Dockerfile

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -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

Comments
 (0)