Mercurial > hg > vamp-build-and-test
annotate SCRIPTS/Dockerfile_ubuntu1604.in @ 133:4acb5d8d80b6 tip
Don't fail environmental check if README.md exists (but .txt and no-suffix don't)
author | Chris Cannam |
---|---|
date | Tue, 30 Jul 2019 12:25:44 +0100 |
parents | d659ed4b9197 |
children |
rev | line source |
---|---|
Chris@128 | 1 FROM ubuntu:16.04 |
Chris@128 | 2 MAINTAINER Chris Cannam <cannam@all-day-breakfast.com> |
Chris@128 | 3 RUN apt-get update && \ |
Chris@128 | 4 apt-get install -y \ |
Chris@128 | 5 build-essential \ |
Chris@128 | 6 libsndfile-dev \ |
Chris@128 | 7 git mercurial subversion \ |
Chris@128 | 8 curl wget zip \ |
Chris@128 | 9 mlton \ |
Chris@128 | 10 python libpython2.7-dev python-numpy \ |
Chris@128 | 11 time valgrind |
Chris@128 | 12 RUN apt-get clean && rm -rf /var/lib/apt/lists/* |
Chris@128 | 13 RUN hg clone -r[[REVISION]] https://code.soundsoftware.ac.uk/hg/vamp-build-and-test |
Chris@128 | 14 WORKDIR vamp-build-and-test |
Chris@128 | 15 RUN ./SCRIPTS/update.sh [[REPO]] [[REPOREVISION]] |
Chris@128 | 16 RUN ./SCRIPTS/update.sh vamp-plugin-sdk |
Chris@128 | 17 RUN ./SCRIPTS/update.sh vamp-plugin-tester |
Chris@128 | 18 RUN ( cd vamp-plugin-tester && ./repoint update ) |
Chris@128 | 19 RUN ./SCRIPTS/process.sh native -c [[REPO]] |