Mercurial > hg > sonic-visualiser
comparison deploy/linux/docker/Dockerfile_v3.0.3_ubuntu1604 @ 1701:5a6068ba6c24
Change of plan; this will be 3.0.3. I'm not going to make any more substantial fixes, so it's not a big enough change for 3.1, but I don't want to hold off the release for long. And hey, it's 303
author | Chris Cannam |
---|---|
date | Thu, 25 May 2017 09:24:01 +0100 |
parents | deploy/linux/docker/Dockerfile_v3.1_ubuntu1604@67f1a896bd87 |
children |
comparison
equal
deleted
inserted
replaced
1700:67f1a896bd87 | 1701:5a6068ba6c24 |
---|---|
1 FROM ubuntu:16.04 | |
2 MAINTAINER Chris Cannam <cannam@all-day-breakfast.com> | |
3 RUN apt-get update && \ | |
4 apt-get install -y \ | |
5 build-essential \ | |
6 libbz2-dev \ | |
7 libfftw3-dev \ | |
8 libfishsound1-dev \ | |
9 libid3tag0-dev \ | |
10 liblo-dev \ | |
11 liblrdf0-dev \ | |
12 libmad0-dev \ | |
13 liboggz2-dev \ | |
14 libpulse-dev \ | |
15 libsamplerate-dev \ | |
16 libsndfile-dev \ | |
17 libsord-dev \ | |
18 libxml2-utils \ | |
19 portaudio19-dev \ | |
20 qt5-default libqt5svg5-dev \ | |
21 raptor-utils \ | |
22 librubberband-dev \ | |
23 git \ | |
24 mercurial \ | |
25 curl wget \ | |
26 autoconf automake libtool lintian | |
27 RUN apt-get clean && rm -rf /var/lib/apt/lists/* | |
28 RUN locale-gen en_US.UTF-8 | |
29 ENV LANG en_US.UTF-8 | |
30 ENV LANGUAGE en_US:en | |
31 ENV LC_ALL en_US.UTF-8 | |
32 RUN curl -L -o capnproto-v0.6.0.tar.gz https://github.com/sandstorm-io/capnproto/archive/v0.6.0.tar.gz | |
33 RUN tar xf capnproto-v0.6.0.tar.gz | |
34 WORKDIR capnproto-0.6.0/c++ | |
35 RUN autoreconf -i | |
36 RUN ./configure --enable-static --disable-shared | |
37 RUN make && make install | |
38 WORKDIR ../.. | |
39 RUN hg clone -rsv_v3.0.3 https://code.soundsoftware.ac.uk/hg/sonic-visualiser | |
40 WORKDIR sonic-visualiser | |
41 RUN ./configure | |
42 RUN make -j3 | |
43 RUN deploy/linux/deploy-deb.sh 3.0.3 amd64 | |
44 RUN tar cvf output.tar *.deb && cp output.tar .. |