]> git.localhorst.tv Git - blank.git/blobdiff - scripts/docker/centos-run-latest/Dockerfile
docker image cleanup
[blank.git] / scripts / docker / centos-run-latest / Dockerfile
diff --git a/scripts/docker/centos-run-latest/Dockerfile b/scripts/docker/centos-run-latest/Dockerfile
new file mode 100644 (file)
index 0000000..5c09e0c
--- /dev/null
@@ -0,0 +1,25 @@
+FROM centos:latest
+
+RUN yum -y update \
+       && yum -y install epel-release \
+       && yum -y update \
+       && yum -y install \
+               make \
+               which \
+               xorg-x11-server-utils \
+               xorg-x11-server-Xvfb \
+       && yum -y clean packages \
+       ;
+
+RUN yum -y install \
+       freealut \
+       glew \
+       openal-soft \
+       SDL2 \
+       SDL2_image \
+       SDL2_net \
+       SDL2_ttf \
+       zlib \
+       && yum -y clean packages \
+       && echo -e '[general]\ndrivers = null' > /etc/openal/alsoft.conf \
+       ;