X-Git-Url: http://git.localhorst.tv/?a=blobdiff_plain;f=scripts%2Fdocker%2Fubuntu-run-devel%2FDockerfile;h=f8cd309e4cd18b43a95056cfe3f326c82145dd97;hb=27d34ab291ed6c574432b1331c7ab61172a097d7;hp=e5f0c01199fd3eb87c9a4e9e41045bfce5aee576;hpb=ae99cb2cdafb6f59ab82e598331ce0951b32bce2;p=blank.git diff --git a/scripts/docker/ubuntu-run-devel/Dockerfile b/scripts/docker/ubuntu-run-devel/Dockerfile index e5f0c01..f8cd309 100644 --- a/scripts/docker/ubuntu-run-devel/Dockerfile +++ b/scripts/docker/ubuntu-run-devel/Dockerfile @@ -3,6 +3,7 @@ FROM ubuntu:devel RUN apt -y update \ && apt -y upgrade \ && apt -y install --no-install-recommends \ + git \ make \ xauth \ xvfb \ @@ -10,16 +11,16 @@ RUN apt -y update \ ; -RUN apt -y install --no-install-recommends make \ - libalut0 \ - libglew1.10 \ - libglu1-mesa \ - libopenal1 \ - libsdl2-2.0-0 \ - libsdl2-image-2.0-0 \ - libsdl2-net-2.0-0 \ - libsdl2-ttf-2.0-0 \ - zlib1g \ +RUN apt -y install --no-install-recommends \ + libalut0 \ + libglew1.10 \ + libglu1-mesa \ + libopenal1 \ + libsdl2-2.0-0 \ + libsdl2-image-2.0-0 \ + libsdl2-net-2.0-0 \ + libsdl2-ttf-2.0-0 \ + zlib1g \ && apt-get -y clean \ && echo -e '[general]\ndrivers = null' > /etc/openal/alsoft.conf \ ;