]> git.localhorst.tv Git - blank.git/blob - scripts/docker/centos-run-latest/Dockerfile
5c09e0c89aec23f548adc56e60dcde45fc504e0d
[blank.git] / scripts / docker / centos-run-latest / Dockerfile
1 FROM centos:latest
2
3 RUN yum -y update \
4         && yum -y install epel-release \
5         && yum -y update \
6         && yum -y install \
7                 make \
8                 which \
9                 xorg-x11-server-utils \
10                 xorg-x11-server-Xvfb \
11         && yum -y clean packages \
12         ;
13
14 RUN yum -y install \
15         freealut \
16         glew \
17         openal-soft \
18         SDL2 \
19         SDL2_image \
20         SDL2_net \
21         SDL2_ttf \
22         zlib \
23         && yum -y clean packages \
24         && echo -e '[general]\ndrivers = null' > /etc/openal/alsoft.conf \
25         ;