Mercurial > hg > sonic-visualiser
view deploy/linux/docker/Dockerfile_v3.0.3_ubuntu1604 @ 1866:65d244ee39f9
Experimentally add a rule to re-run Repoint if the project or lock file is newer than the .repoint.point file. This sort of thing isn't sufficient for all uses of Repoint because some of the initial qmake project file info is brought in by Repoint, so it has to be run before qmake as well. Also it's not clear yet how it will interact with archived builds (i.e. source releases) -- to be tested.
author | Chris Cannam |
---|---|
date | Tue, 19 Jun 2018 15:03:24 +0100 |
parents | 5a6068ba6c24 |
children |
line wrap: on
line source
FROM ubuntu:16.04 MAINTAINER Chris Cannam <cannam@all-day-breakfast.com> RUN apt-get update && \ apt-get install -y \ build-essential \ libbz2-dev \ libfftw3-dev \ libfishsound1-dev \ libid3tag0-dev \ liblo-dev \ liblrdf0-dev \ libmad0-dev \ liboggz2-dev \ libpulse-dev \ libsamplerate-dev \ libsndfile-dev \ libsord-dev \ libxml2-utils \ portaudio19-dev \ qt5-default libqt5svg5-dev \ raptor-utils \ librubberband-dev \ git \ mercurial \ curl wget \ autoconf automake libtool lintian RUN apt-get clean && rm -rf /var/lib/apt/lists/* RUN locale-gen en_US.UTF-8 ENV LANG en_US.UTF-8 ENV LANGUAGE en_US:en ENV LC_ALL en_US.UTF-8 RUN curl -L -o capnproto-v0.6.0.tar.gz https://github.com/sandstorm-io/capnproto/archive/v0.6.0.tar.gz RUN tar xf capnproto-v0.6.0.tar.gz WORKDIR capnproto-0.6.0/c++ RUN autoreconf -i RUN ./configure --enable-static --disable-shared RUN make && make install WORKDIR ../.. RUN hg clone -rsv_v3.0.3 https://code.soundsoftware.ac.uk/hg/sonic-visualiser WORKDIR sonic-visualiser RUN ./configure RUN make -j3 RUN deploy/linux/deploy-deb.sh 3.0.3 amd64 RUN tar cvf output.tar *.deb && cp output.tar ..