forked from cha63506/raamkozijn
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathDockerfile
46 lines (45 loc) · 1.49 KB
/
Dockerfile
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
FROM docker.io/centos:latest
MAINTAINER [email protected]
# set the timezone to be Europe/Amsterdam
RUN rm -f /etc/localtime && ln -s /usr/share/zoneinfo/Europe/Amsterdam /etc/localtime
#RUN yum -y update
RUN yum clean all
RUN yum -y install libXext libX11 libXcursor libSM libICE libGL fontconfig libXinerama
RUN yum -y groupinstall fonts
RUN yum -y install qt \
tar \
gcc \
make \
curl \
dkms \
bzip2 \
patch \
which \
python \
procps \
vagrant \
libgomp \
systemd \
binutils \
glibc-devel \
kernel-devel \
glibc-headers \
kernel-headers \
vagrant-libvirt \
openssh-clients \
libvirt-daemon-vbox
RUN yum -y install dbus \
SDL \
alsa-lib \
libXmu \
libXt \
libpng \
libvpx \
net-tools
RUN curl -kls http://download.virtualbox.org/virtualbox/5.1.4/VirtualBox-5.1-5.1.4_110228_el7-1.x86_64.rpm -o /VirtualBox-5.1-5.1.4_110228_el7-1.x86_64.rpm
RUN yum clean all
VOLUME /usr/src/
COPY artifacts/packer*.* /
COPY artifacts/entrypoint.sh /entrypoint.sh
EXPOSE 5555 5985
CMD /entrypoint.sh