comparison deploy/linux/docker/Dockerfile_appimage.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
57 WORKDIR capnproto 57 WORKDIR capnproto
58 RUN git checkout v0.6.1 58 RUN git checkout v0.6.1
59 WORKDIR c++ 59 WORKDIR c++
60 RUN autoreconf -i && ./configure && make -j3 && make install 60 RUN autoreconf -i && ./configure && make -j3 && make install
61 61
62 WORKDIR ../../sonic-visualiser 62 WORKDIR /root
63
64 COPY id_dsa_build .ssh/id_dsa_build
65 COPY known_hosts .ssh/known_hosts
66 RUN chmod 600 .ssh/id_dsa_build .ssh/known_hosts
67 RUN echo '{"accounts": {"bitbucket": "cannam"}}' > .repoint.json
68 RUN ( echo '[ui]' ; echo 'ssh = ssh -i /root/.ssh/id_dsa_build' ) > .hgrc
69
70 WORKDIR /sonic-visualiser
63 ENV QTDIR /opt/qt510 71 ENV QTDIR /opt/qt510
64 ENV PATH /opt/qt510/bin:$PATH 72 ENV PATH /opt/qt510/bin:$PATH
65 RUN ./configure 73 RUN ./configure
66 RUN make -j3 74 RUN make -j3
67 75