Mercurial > hg > vampy
diff Dockerfile.in @ 106:76badb3a0bb3 vampy-2.1
Add mechanism to build a "standard" Linux .so using Docker
author | Chris Cannam |
---|---|
date | Tue, 05 Feb 2019 12:48:59 +0000 |
parents | |
children |
line wrap: on
line diff
--- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/Dockerfile.in Tue Feb 05 12:48:59 2019 +0000 @@ -0,0 +1,20 @@ +FROM ubuntu:16.04 +MAINTAINER Chris Cannam <cannam@all-day-breakfast.com> +RUN apt-get update && \ + apt-get install -y \ + build-essential \ + libsndfile-dev \ + git \ + mercurial \ + curl wget \ + python libpython2.7-dev python-numpy +RUN apt-cache search python +RUN apt-get clean && rm -rf /var/lib/apt/lists/* +RUN hg clone -r[[REVISION]] https://code.soundsoftware.ac.uk/hg/vampy +RUN hg clone https://code.soundsoftware.ac.uk/hg/vamp-plugin-sdk +WORKDIR vamp-plugin-sdk +RUN ./configure +RUN make -j3 +WORKDIR ../vampy +RUN make -f Makefile.linux +