merge
1 files changed, 25 insertions(+), 0 deletions(-)

A => dockerfile
A => dockerfile +25 -0
@@ 0,0 1,25 @@ 
+FROM ubuntu:xenial
+MAINTAINER Vesa Norilo (vnorilo@gmail.com)
+
+RUN set -ex; \
+	if ! command -v gpg > /dev/null; then \
+		apt-get update; \
+		apt-get install -y --no-install-recommends \
+			gnupg \
+			dirmngr \
+		; \
+		rm -rf /var/lib/apt/lists/*; \
+	fi
+
+RUN apt-get update
+
+RUN apt-get install -y --no-install-recommends mercurial cmake subversion build-essential 
+RUN apt-get install -y --no-install-recommends libsndfile1-dev libjack-jackd2-dev libcurl4-openssl-dev libz-dev libedit-dev
+
+RUN apt-get install -y --no-install-recommends llvm-3.7-dev
+
+RUN apt-get install -y --no-install-recommends software-properties-common apt-utils wget
+RUN wget -O - https://apt.llvm.org/llvm-snapshot.gpg.key | apt-key add -
+RUN add-apt-repository 'deb http://apt.llvm.org/xenial/ llvm-toolchain-xenial-6.0 main' && apt-get update
+RUN apt-get install -y --no-install-recommends llvm-6.0-dev
+