Chris@1669: FROM ubuntu:16.04 Chris@1669: MAINTAINER Chris Cannam Chris@1669: RUN apt-get update && \ Chris@1669: apt-get install -y \ Chris@1669: build-essential \ Chris@1669: libbz2-dev \ Chris@1669: libfftw3-dev \ Chris@1669: libfishsound1-dev \ Chris@1669: libid3tag0-dev \ Chris@1669: liblo-dev \ Chris@1669: liblrdf0-dev \ Chris@1669: libmad0-dev \ Chris@1669: liboggz2-dev \ Chris@1669: libpulse-dev \ Chris@1669: libsamplerate-dev \ Chris@1669: libsndfile-dev \ Chris@1669: libsord-dev \ Chris@1669: libxml2-utils \ Chris@1669: portaudio19-dev \ Chris@1669: qt5-default libqt5svg5-dev \ Chris@1669: raptor-utils \ Chris@1669: librubberband-dev \ Chris@1669: git \ Chris@1669: mercurial \ Chris@1669: curl wget \ Chris@1669: autoconf automake libtool lintian Chris@1669: RUN apt-get clean && rm -rf /var/lib/apt/lists/* Chris@1669: RUN locale-gen en_US.UTF-8 Chris@1669: ENV LANG en_US.UTF-8 Chris@1669: ENV LANGUAGE en_US:en Chris@1669: ENV LC_ALL en_US.UTF-8 Chris@1669: RUN git clone https://github.com/sandstorm-io/capnproto Chris@1669: WORKDIR capnproto/c++ Chris@1669: RUN ./setup-autotools.sh && autoreconf -i Chris@1669: RUN ./configure --enable-static --disable-shared Chris@1669: RUN make && make install Chris@1669: WORKDIR ../.. Chris@1669: RUN hg clone -rsv_v3.0.2 https://code.soundsoftware.ac.uk/hg/sonic-visualiser Chris@1669: WORKDIR sonic-visualiser Chris@1669: RUN ./configure Chris@1669: RUN make -j3 Chris@1669: RUN deploy/linux/deploy-deb.sh 3.0.2 amd64 Chris@1669: RUN tar cvf output.tar *.deb && cp output.tar ..