mirror of
https://github.com/Icinga/icinga2.git
synced 2026-03-21 10:00:35 -04:00
6 lines
197 B
Docker
6 lines
197 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
|
|
RUN mkdir /root/build
|
|
ADD build /root/build
|
|
ENV HOME /root
|