X-Git-Url: http://git.localhorst.tv/?a=blobdiff_plain;f=scripts%2Fdocker%2Fdebian-run-testing%2FDockerfile;h=8538b751fc06bd6b7d5af434cca3cedbd11faad1;hb=1a8974bcfeb6f6c937f2ec523e52fdc4a3785f1e;hp=c344aa963e04a1a45c425caadd74bf85ae93f21c;hpb=ae99cb2cdafb6f59ab82e598331ce0951b32bce2;p=blank.git diff --git a/scripts/docker/debian-run-testing/Dockerfile b/scripts/docker/debian-run-testing/Dockerfile index c344aa9..8538b75 100644 --- a/scripts/docker/debian-run-testing/Dockerfile +++ b/scripts/docker/debian-run-testing/Dockerfile @@ -3,6 +3,8 @@ FROM debian:testing RUN apt -y update \ && apt -y upgrade \ && apt -y install --no-install-recommends \ + dbus \ + git \ make \ xauth \ xvfb \ @@ -10,15 +12,15 @@ RUN apt -y update \ ; 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 \ + 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 \ + && printf '[general]\ndrivers = null\n' > /etc/openal/alsoft.conf \ ;