]> git.localhorst.tv Git - blobs.git/blob - scripts/docker/debian-run-testing/Dockerfile
8538b751fc06bd6b7d5af434cca3cedbd11faad1
[blobs.git] / scripts / docker / debian-run-testing / Dockerfile
1 FROM debian:testing
2
3 RUN apt -y update \
4         && apt -y upgrade \
5         && apt -y install --no-install-recommends \
6                 dbus \
7                 git \
8                 make \
9                 xauth \
10                 xvfb \
11         && apt-get -y clean \
12         ;
13
14 RUN apt -y install --no-install-recommends \
15                 libalut0 \
16                 libglew1.10 \
17                 libglu1-mesa \
18                 libopenal1 \
19                 libsdl2-2.0-0 \
20                 libsdl2-image-2.0-0 \
21                 libsdl2-net-2.0-0 \
22                 libsdl2-ttf-2.0-0 \
23                 zlib1g \
24         && apt-get -y clean \
25         && printf '[general]\ndrivers = null\n' > /etc/openal/alsoft.conf \
26         ;