]> git.localhorst.tv Git - blank.git/blobdiff - scripts/docker/ubuntu-run-latest/Dockerfile
docker image cleanup
[blank.git] / scripts / docker / ubuntu-run-latest / Dockerfile
diff --git a/scripts/docker/ubuntu-run-latest/Dockerfile b/scripts/docker/ubuntu-run-latest/Dockerfile
new file mode 100644 (file)
index 0000000..69c11a9
--- /dev/null
@@ -0,0 +1,26 @@
+FROM ubuntu:latest
+
+RUN apt 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 \
+       ;
+
+ENV LD_LIBRARY_PATH /usr/lib/x86_64-linux-gnu