-
Notifications
You must be signed in to change notification settings - Fork 77
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #149 from gotcha/master
Problem: no Dockerfile to test code from working dir
- Loading branch information
Showing
1 changed file
with
52 additions
and
0 deletions.
There are no files selected for viewing
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,52 @@ | ||
FROM ubuntu:trusty | ||
MAINTAINER Benjamin Henrion <[email protected]> | ||
|
||
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 https://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 https://github.com/zeromq/libzmq.git | ||
WORKDIR /home/zmq/libzmq | ||
RUN ./autogen.sh | ||
RUN ./configure | ||
RUN make | ||
RUN sudo make install | ||
RUN sudo ldconfig | ||
|
||
WORKDIR /home/zmq | ||
RUN git clone https://github.com/zeromq/czmq.git | ||
WORKDIR /home/zmq/czmq | ||
RUN ./autogen.sh | ||
RUN ./configure | ||
RUN make | ||
RUN sudo make install | ||
RUN sudo ldconfig | ||
|
||
COPY . /home/zmq/malamute | ||
RUN sudo chown -R zmq:zmq /home/zmq/malamute | ||
WORKDIR /home/zmq/malamute | ||
RUN ./autogen.sh | ||
RUN ./configure | ||
RUN make | ||
RUN sudo make install | ||
RUN sudo ldconfig | ||
|
||
# Custom commands for Dockerfile | ||
EXPOSE 9999 | ||
CMD ["/usr/local/bin/malamute", "/home/zmq/malamute/src/malamute.cfg"] | ||
|