# HG changeset patch # User Chris Cannam # Date 1484069155 0 # Node ID 3173259cdcc67cb687fb9d62f6a945a86bc7ea77 # Parent 66936281c505590fd840685eecaebbbd7ff84595 Dockerfile that builds the executable on Ubuntu 16.04, hopefully as the start of some more useful packaging strategy diff -r 66936281c505 -r 3173259cdcc6 deploy/linux/docker/Dockerfile.ubuntu1604 --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/deploy/linux/docker/Dockerfile.ubuntu1604 Tue Jan 10 17:25:55 2017 +0000 @@ -0,0 +1,40 @@ +FROM ubuntu:16.04 +MAINTAINER Chris Cannam +RUN apt-get update +RUN 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 \ + autoconf automake libtool +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 git clone https://github.com/sandstorm-io/capnproto +WORKDIR capnproto/c++ +RUN ./setup-autotools.sh && autoreconf -i +RUN ./configure --enable-static --disable-shared +RUN make && make install +WORKDIR ../.. +RUN hg clone https://code.soundsoftware.ac.uk/hg/sonic-visualiser +WORKDIR sonic-visualiser +RUN ./configure +RUN make -j3