comparison 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
comparison
equal deleted inserted replaced
105:d5220acc1403 106:76badb3a0bb3
1 FROM ubuntu:16.04
2 MAINTAINER Chris Cannam <cannam@all-day-breakfast.com>
3 RUN apt-get update && \
4 apt-get install -y \
5 build-essential \
6 libsndfile-dev \
7 git \
8 mercurial \
9 curl wget \
10 python libpython2.7-dev python-numpy
11 RUN apt-cache search python
12 RUN apt-get clean && rm -rf /var/lib/apt/lists/*
13 RUN hg clone -r[[REVISION]] https://code.soundsoftware.ac.uk/hg/vampy
14 RUN hg clone https://code.soundsoftware.ac.uk/hg/vamp-plugin-sdk
15 WORKDIR vamp-plugin-sdk
16 RUN ./configure
17 RUN make -j3
18 WORKDIR ../vampy
19 RUN make -f Makefile.linux
20