comparison deploy/linux/docker/Dockerfile_appimage.in @ 2144:3a4202cae7fe

Updates to try to resolve bitbucket access problem from old Ubuntu 14.04 image - switching to using a dedicated build ssh key (locally stored, not in the repo!) copied in on demand
author Chris Cannam
date Tue, 04 Dec 2018 10:57:36 +0000
parents f69819b5c248
children 3f3ad6701482
comparison
equal deleted inserted replaced
2143:27ad597b1180 2144:3a4202cae7fe
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