comparison deploy/linux/docker/Dockerfile_deb.in @ 2120:295b6a146f1c

Deb fixes
author Chris Cannam
date Wed, 21 Nov 2018 12:30:40 +0000
parents 914ddb643616
children 3a4202cae7fe
comparison
equal deleted inserted replaced
2119:914ddb643616 2120:295b6a146f1c
45 45
46 RUN git clone https://github.com/sandstorm-io/capnproto 46 RUN git clone https://github.com/sandstorm-io/capnproto
47 WORKDIR capnproto 47 WORKDIR capnproto
48 RUN git checkout v0.6.1 48 RUN git checkout v0.6.1
49 WORKDIR c++ 49 WORKDIR c++
50 RUN autoreconf -i && ./configure && make -j3 && make install 50 RUN autoreconf -i && ./configure --enable-shared=no --enable-static=yes && make -j3 && make install
51 51
52 WORKDIR ../../sonic-visualiser 52 WORKDIR ../../sonic-visualiser
53 RUN ./configure 53 RUN ./configure
54 RUN make -j3 54 RUN make -j3
55 55