Mercurial > hg > tony
annotate deploy/linux/docker/32/Dockerfile @ 571:2cf4978eb724
Fix failure of "Form Note from Selection" to work correctly when an existing note spanned one end of the selection but did not reach the other. Also update subrepos to fix a deadlock
author | Chris Cannam |
---|---|
date | Thu, 20 Jun 2019 11:10:59 +0100 |
parents | 9d2d99ae7b57 |
children |
rev | line source |
---|---|
Chris@466 | 1 FROM 32bit/ubuntu:14.04 |
Chris@466 | 2 MAINTAINER Chris Cannam <cannam@all-day-breakfast.com> |
Chris@466 | 3 RUN apt-get update && apt-get install -y \ |
Chris@466 | 4 build-essential \ |
Chris@466 | 5 mercurial \ |
Chris@466 | 6 qtbase5-dev qt5-default \ |
Chris@466 | 7 libsndfile1-dev libsamplerate0-dev \ |
Chris@466 | 8 libfftw3-dev \ |
Chris@466 | 9 libbz2-dev \ |
Chris@466 | 10 libjack-dev libjack0 libpulse-dev \ |
Chris@466 | 11 libmad0-dev libid3tag0-dev \ |
Chris@466 | 12 liboggz2-dev libfishsound1-dev \ |
Chris@466 | 13 libasound2-dev \ |
Chris@466 | 14 liblo-dev liblrdf0-dev libsord-dev libserd-dev \ |
Chris@466 | 15 vamp-plugin-sdk librubberband-dev \ |
Chris@466 | 16 libboost-dev libboost-test-dev \ |
Chris@466 | 17 lintian \ |
Chris@466 | 18 w3m |
Chris@466 | 19 RUN hg clone -u v1.0-linuxbuild https://code.soundsoftware.ac.uk/hg/tony /opt/tony |
Chris@466 | 20 WORKDIR /opt/tony |
Chris@466 | 21 RUN ./configure && make |
Chris@466 | 22 RUN make -C chp -f Makefile.linux |
Chris@466 | 23 RUN make -C pyin -f Makefile.linux64 |
Chris@466 | 24 RUN bash deploy/linux/deploy-deb.sh 1.0cc1-1 i386 |