xref: /aosp_15_r20/external/igt-gpu-tools/Dockerfile.debian (revision d83cc019efdc2edc6c4b16e9034a3ceb8d35d77c)
1FROM igt-debian-minimal
2
3RUN apt-get update
4RUN apt-get install -y \
5			libunwind-dev \
6			libgsl-dev \
7			libasound2-dev \
8			libxmlrpc-core-c3-dev \
9			libjson-c-dev \
10			libcurl4-openssl-dev \
11			python-docutils \
12			valgrind \
13			peg
14
15RUN apt-get install -t stretch-backports -y \
16					libdrm-intel1
17
18# autotools build deps
19RUN apt-get install -y \
20			autoconf \
21			automake \
22			xutils-dev \
23			libtool \
24			make
25