]> git.localhorst.tv Git - blobs.git/blob - scripts/docker/centos-run-latest/Dockerfile
stolen dockerfiles from blank
[blobs.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                 git \
8                 make \
9                 which \
10                 xorg-x11-server-utils \
11                 xorg-x11-server-Xvfb \
12         && yum -y clean packages \
13         ;
14
15 RUN yum -y install \
16         freealut \
17         glew \
18         openal-soft \
19         SDL2 \
20         SDL2_image \
21         SDL2_net \
22         SDL2_ttf \
23         zlib \
24         && yum -y clean packages \
25         && printf '[general]\ndrivers = null\n' > /etc/openal/alsoft.conf \
26         ;