]> git.localhorst.tv Git - blank.git/blob - scripts/docker/debian-run-testing/Dockerfile
8af8716236934f07d2c4f0e275d6ae1fb32eb556
[blank.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                 git \
7                 make \
8                 xauth \
9                 xvfb \
10         && apt-get -y clean \
11         ;
12
13 RUN apt -y install --no-install-recommends \
14                 libalut0 \
15                 libglew1.10 \
16                 libglu1-mesa \
17                 libopenal1 \
18                 libsdl2-2.0-0 \
19                 libsdl2-image-2.0-0 \
20                 libsdl2-net-2.0-0 \
21                 libsdl2-ttf-2.0-0 \
22                 zlib1g \
23         && apt-get -y clean \
24         && echo -e '[general]\ndrivers = null' > /etc/openal/alsoft.conf \
25         ;