summaryrefslogtreecommitdiff
path: root/Dockerfile.build-debian
blob: 2749b177900c2077b058120bf185865ae9bb1248 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
FROM build-debian-minimal

RUN apt-get update
RUN apt-get install -y \
			libunwind-dev \
			libgsl-dev \
			libasound2-dev \
			libxmlrpc-core-c3-dev \
			libjson-c-dev \
			libcurl4-openssl-dev \
			python-docutils \
			valgrind \
			peg

RUN apt-get install -t stretch-backports -y \
					libdrm-intel1

# autotools build deps
RUN apt-get install -y \
			autoconf \
			automake \
			xutils-dev \
			libtool \
			make