mirror of
https://github.com/zeromq/libzmq.git
synced 2024-12-12 10:33:52 +01:00
Add Docker support
This commit is contained in:
parent
d846fbf107
commit
a62e6f473d
11
Dockerfile
Normal file
11
Dockerfile
Normal file
@ -0,0 +1,11 @@
|
||||
FROM ubuntu:14.04
|
||||
|
||||
MAINTAINER ZeroMQ Project <zeromq@imatix.com>
|
||||
|
||||
RUN apt-get update
|
||||
RUN DEBIAN_FRONTEND=noninteractive apt-get install -y git build-essential libtool autoconf automake pkg-config unzip libkrb5-dev
|
||||
RUN cd /tmp && git clone git://github.com/jedisct1/libsodium.git && cd libsodium && git checkout e2a30a && ./autogen.sh && ./configure && make check && make install && ldconfig
|
||||
RUN cd /tmp && git clone --depth 1 git://github.com/zeromq/libzmq.git && cd libzmq && ./autogen.sh && ./configure && make
|
||||
# RUN cd /tmp/libzmq && make check
|
||||
RUN cd /tmp/libzmq && make install && ldconfig
|
||||
RUN rm /tmp/* -rf
|
Loading…
Reference in New Issue
Block a user