comparison deploy/linux/docker/Dockerfile_deb.in @ 2145:b35c1f8b2ddd fix-static-analysis

Merge from default branch
author Chris Cannam
date Tue, 04 Dec 2018 13:53:59 +0000
parents 3a4202cae7fe
children 3f3ad6701482
comparison
equal deleted inserted replaced
2127:292f6cc6b65e 2145:b35c1f8b2ddd
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 --enable-shared=no --enable-static=yes && 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 /root
53
54 COPY id_dsa_build .ssh/id_dsa_build
55 COPY known_hosts .ssh/known_hosts
56 RUN chmod 600 .ssh/id_dsa_build .ssh/known_hosts
57 RUN echo '{"accounts": {"bitbucket": "cannam"}}' > .repoint.json
58 RUN ( echo '[ui]' ; echo 'ssh = ssh -i /root/.ssh/id_dsa_build' ) > .hgrc
59
60 WORKDIR /sonic-visualiser
53 RUN ./configure 61 RUN ./configure
54 RUN make -j3 62 RUN make -j3
55 63
56 RUN deploy/linux/deploy-deb.sh [[RELEASE]] amd64 64 RUN deploy/linux/deploy-deb.sh [[RELEASE]] amd64
57 RUN tar cvf output-deb.tar *.deb && cp output-deb.tar .. 65 RUN tar cvf output-deb.tar *.deb && cp output-deb.tar ..