comparison Dockerfile.in @ 109:471142e74a1a

Merge
author Chris Cannam
date Tue, 12 Feb 2019 11:27:14 +0000
parents 76badb3a0bb3
children
comparison
equal deleted inserted replaced
108:efff8e5d90a3 109:471142e74a1a
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