Mercurial > hg > vampy
view Dockerfile.in @ 115:a9e918adfff0
Skip directly over anything with null metatype - can happen with plugins whose init methods are not conformant (but that otherwise load OK as code)
author | Chris Cannam |
---|---|
date | Tue, 26 Feb 2019 14:31:08 +0000 |
parents | 76badb3a0bb3 |
children |
line wrap: on
line source
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