summaryrefslogtreecommitdiff
path: root/Dockerfile.build-debian
blob: b143a532b34a71019aa446a3d735a450e0f16b1a (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
25
26
27
28
29
30
31
ARG CI_COMMIT_SHA
ARG CI_REGISTRY_IMAGE
FROM $CI_REGISTRY_IMAGE/build-debian-minimal:commit-$CI_COMMIT_SHA

# inherits from Dockerfile.build-debian-minimal
#
# just few extra dependencies for building IGT with all the optional components
# enabled

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 \
			libdrm-intel1

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

RUN apt-get clean