]> git.localhorst.tv Git - blank.git/blob - scripts/docker/ubuntu-run-devel/Dockerfile
docker image cleanup
[blank.git] / scripts / docker / ubuntu-run-devel / Dockerfile
1 FROM ubuntu:devel
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
13 RUN apt -y install --no-install-recommends make \
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         ;