X-Git-Url: http://git.localhorst.tv/?a=blobdiff_plain;f=scripts%2Fdocker%2Fdebian-run-testing%2FDockerfile;fp=scripts%2Fdocker%2Fdebian-run-testing%2FDockerfile;h=c344aa963e04a1a45c425caadd74bf85ae93f21c;hb=ae99cb2cdafb6f59ab82e598331ce0951b32bce2;hp=0000000000000000000000000000000000000000;hpb=1257f99e76493b448bd81dba22e0ecb570aac6a0;p=blank.git diff --git a/scripts/docker/debian-run-testing/Dockerfile b/scripts/docker/debian-run-testing/Dockerfile new file mode 100644 index 0000000..c344aa9 --- /dev/null +++ b/scripts/docker/debian-run-testing/Dockerfile @@ -0,0 +1,24 @@ +FROM debian:testing + +RUN apt -y update \ + && apt -y upgrade \ + && apt -y install --no-install-recommends \ + make \ + xauth \ + xvfb \ + && apt-get -y clean \ + ; + +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 \ + ;