mirror of
https://github.com/Icinga/icinga2.git
synced 2026-04-24 15:48:51 -04:00
8 lines
399 B
Docker
8 lines
399 B
Docker
FROM debian:jessie
|
|
RUN apt-get update
|
|
RUN apt-get install -y clang cmake make ccache flex bison libboost-all-dev libssl-dev git-core cgdb subversion
|
|
RUN cd /root && mkdir gdb_printers && cd gdb_printers && svn co svn://gcc.gnu.org/svn/gcc/trunk/libstdc++-v3/python
|
|
RUN cd /root && git clone https://github.com/ruediger/Boost-Pretty-Printer
|
|
RUN mkdir /root/build
|
|
ADD build /root/build
|
|
ENV HOME /root
|