Mercurial > hg > sonic-visualiser
comparison deploy/linux/docker/Dockerfile_appimage.in @ 2206:252c7c8a1a37 rubberband-static
Merge from default branch
author | Chris Cannam |
---|---|
date | Thu, 31 Jan 2019 10:32:45 +0000 |
parents | 3f3ad6701482 |
children | 1d87a709fe1a |
comparison
equal
deleted
inserted
replaced
2129:02f15fb8ec68 | 2206:252c7c8a1a37 |
---|---|
1 # This pulls the latest versions of capnp & SV from repos - so you | |
2 # will need to defeat the Docker cache by destroying the container | |
3 # each time you want to update it | |
4 # | |
5 FROM ubuntu:14.04 | 1 FROM ubuntu:14.04 |
6 MAINTAINER Chris Cannam <cannam@all-day-breakfast.com> | 2 MAINTAINER Chris Cannam <cannam@all-day-breakfast.com> |
7 RUN apt-get update && \ | 3 RUN apt-get update && \ |
8 apt-get install -y \ | 4 apt-get install -y \ |
9 software-properties-common \ | 5 software-properties-common \ |
57 WORKDIR capnproto | 53 WORKDIR capnproto |
58 RUN git checkout v0.6.1 | 54 RUN git checkout v0.6.1 |
59 WORKDIR c++ | 55 WORKDIR c++ |
60 RUN autoreconf -i && ./configure && make -j3 && make install | 56 RUN autoreconf -i && ./configure && make -j3 && make install |
61 | 57 |
62 WORKDIR ../../sonic-visualiser | 58 WORKDIR /root |
59 | |
60 COPY id_dsa_build .ssh/id_dsa_build | |
61 COPY known_hosts .ssh/known_hosts | |
62 RUN chmod 600 .ssh/id_dsa_build .ssh/known_hosts | |
63 RUN echo '{"accounts": {"bitbucket": "cannam"}}' > .repoint.json | |
64 RUN ( echo '[ui]' ; echo 'ssh = ssh -i /root/.ssh/id_dsa_build' ) > .hgrc | |
65 | |
66 WORKDIR /sonic-visualiser | |
63 ENV QTDIR /opt/qt510 | 67 ENV QTDIR /opt/qt510 |
64 ENV PATH /opt/qt510/bin:$PATH | 68 ENV PATH /opt/qt510/bin:$PATH |
65 RUN ./configure | 69 RUN ./configure |
66 RUN make -j3 | 70 RUN make -j3 |
67 | 71 |