]> git.localhorst.tv Git - blobs.git/blob - scripts/docker/debian-run-latest/Dockerfile
stolen dockerfiles from blank
[blobs.git] / scripts / docker / debian-run-latest / Dockerfile
1 FROM debian:latest
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         && printf '[general]\ndrivers = null\n' > /etc/openal/alsoft.conf \
25         ;
26
27 ENV LD_LIBRARY_PATH /usr/lib/x86_64-linux-gnu