view SCRIPTS/Dockerfile_ubuntu1604.in @ 128:3a8658f7e0b7

Add script to run build in Docker
author Chris Cannam
date Thu, 07 Feb 2019 11:38:32 +0000
parents
children d659ed4b9197
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 subversion \
    curl wget zip \
    mlton \
    python libpython2.7-dev python-numpy \
    time valgrind
RUN apt-get clean && rm -rf /var/lib/apt/lists/*
RUN hg clone -r[[REVISION]] https://code.soundsoftware.ac.uk/hg/vamp-build-and-test
WORKDIR vamp-build-and-test
RUN ./SCRIPTS/update.sh [[REPO]] [[REPOREVISION]]
RUN ./SCRIPTS/update.sh vamp-plugin-sdk
RUN ./SCRIPTS/update.sh vamp-plugin-tester
RUN ( cd vamp-plugin-tester && ./repoint update )
RUN ./SCRIPTS/process.sh native -c [[REPO]]