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