Created
December 30, 2015 21:07
-
-
Save zoobab/2a4c355562af6d01c542 to your computer and use it in GitHub Desktop.
malamute main Dockerfile
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
FROM ubuntu:trusty | |
MAINTAINER Benjamin Henrion <zoobab@gmail.com> | |
RUN DEBIAN_FRONTEND=noninteractive apt-get update -y -q | |
RUN DEBIAN_FRONTEND=noninteractive apt-get install -y -q --force-yes uuid-dev build-essential git-core libtool autotools-dev autoconf automake pkg-config unzip libkrb5-dev cmake | |
RUN useradd -d /home/zmq -m -s /bin/bash zmq | |
RUN echo "zmq ALL=(ALL) NOPASSWD:ALL" > /etc/sudoers.d/zmq | |
RUN chmod 0440 /etc/sudoers.d/zmq | |
USER zmq | |
WORKDIR /home/zmq | |
RUN git clone git://github.com/jedisct1/libsodium.git | |
WORKDIR /home/zmq/libsodium | |
RUN ./autogen.sh | |
RUN ./configure | |
RUN make | |
RUN sudo make install | |
RUN sudo ldconfig | |
WORKDIR /home/zmq | |
RUN git clone git://github.com/zeromq/libzmq.git | |
WORKDIR /home/zmq/libzmq | |
RUN mkdir build | |
WORKDIR /home/zmq/libzmq/build | |
RUN cmake .. | |
RUN make | |
RUN sudo make install | |
RUN sudo ldconfig | |
WORKDIR /home/zmq | |
RUN git clone git://github.com/zeromq/czmq.git | |
WORKDIR /home/zmq/czmq | |
RUN mkdir build | |
WORKDIR /home/zmq/czmq/build | |
RUN cmake .. | |
RUN make | |
RUN sudo make install | |
RUN sudo ldconfig | |
WORKDIR /home/zmq | |
RUN git clone git://github.com/zeromq/malamute.git | |
WORKDIR /home/zmq/malamute | |
RUN mkdir build | |
WORKDIR /home/zmq/malamute/build | |
RUN cmake .. | |
RUN make | |
RUN sudo make install | |
RUN sudo ldconfig | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment