Skip to content
Alexandre Hamez edited this page Oct 2, 2016 · 4 revisions
from ubuntu:16.04

RUN mkdir -p /app

WORKDIR /tmp
RUN apt-get update
RUN apt-get install -y
RUN apt-get install -y\
  libboost-dev\
  cmake\
  git\
  g++\
  python3\
  libboost-system-dev\
  libboost-program-options-dev\
  libboost-coroutine-dev\
  libboost-thread-dev\
  libboost-filesystem-dev
RUN git clone https://github.com/ahamez/libsdd.git\
 && git clone https://github.com/ahamez/pnmc.git
RUN cd pnmc && git submodule update --init --recursive
RUN mkdir build\
 && cd build\
 && cmake /tmp/pnmc -DLIBSDD_PATH=/tmp/libsdd -DCMAKE_BUILD_TYPE=Release\
 && make VERBOSE=1 -j2 pnmc
Clone this wiki locally