Mercurial > hg > vamp-build-and-test
annotate SCRIPTS/Dockerfile @ 120:4729c8589274 emscripten-piper
Add piper builds
author | Chris Cannam |
---|---|
date | Fri, 11 Nov 2016 15:49:32 +0000 |
parents | 1c31fd7b4cb5 |
children |
rev | line source |
---|---|
Chris@93 | 1 FROM base/devel:latest |
Chris@93 | 2 MAINTAINER Chris Cannam <cannam@all-day-breakfast.com> |
Chris@93 | 3 RUN echo "[multilib]" >> /etc/pacman.conf && echo "Include = /etc/pacman.d/mirrorlist" >> /etc/pacman.conf |
Chris@93 | 4 RUN pacman-key --refresh-keys && pacman -Syu --noconfirm && pacman-db-upgrade && pacman -S --noconfirm \ |
Chris@93 | 5 mercurial subversion git \ |
Chris@93 | 6 zip \ |
Chris@93 | 7 libsndfile \ |
Chris@93 | 8 python2-numpy \ |
Chris@93 | 9 mingw-w64-gcc \ |
Chris@97 | 10 lib32-ncurses wine \ |
Chris@97 | 11 openssh w3m |
Chris@93 | 12 RUN hg clone https://code.soundsoftware.ac.uk/hg/vamp-build-and-test /opt/vamp-build-and-test |
Chris@93 | 13 WORKDIR /opt/vamp-build-and-test |
Chris@93 | 14 RUN ./SCRIPTS/update-all.sh |