File: Dockerfile

package info (click to toggle)
zeromq3 4.3.1-4%2Bdeb10u2
  • links: PTS
  • area: main
  • in suites: buster
  • size: 6,948 kB
  • sloc: cpp: 47,581; ansic: 5,477; makefile: 1,248; sh: 901; xml: 202
file content (11 lines) | stat: -rw-r--r-- 613 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
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