dockerfiles/virtualbox/Dockerfile

53 lines
1.5 KiB
Docker
Raw Normal View History

2015-04-28 19:30:19 +02:00
# Run virtualbox in a container
#
# docker run -d \
# -v /tmp/.X11-unix:/tmp/.X11-unix \
# -e DISPLAY=unix$DISPLAY \
# --privileged \
# --name virtualbox \
# jess/virtualbox
2015-04-28 19:30:19 +02:00
#
# On first run it will throw an error that you need to
# recompile the kernel module with: /etc/init.d/vboxdrv setup
#
# Here is how you get it to work:
# copy the files you need for the module from the container that
# is currently running to your host
#
# first the lib:
# docker cp virtualbox:/usr/lib/virtualbox /usr/lib
#
# then the share
# docker cp virtualbox:/usr/share/virtualbox /usr/share
#
# then run the script:
# /usr/lib/virtualbox/vboxdrv.sh setup
#
# it will recompile the module, you can then see it in lsmod
#
# then you can remove all the shit you copied
# rm -rf /usr/share/virtualbox /usr/lib/virtualbox
#
FROM debian:sid
LABEL maintainer "Jessie Frazelle <jess@linux.com>"
2015-04-28 19:30:19 +02:00
ENV DEBIAN_FRONTEND noninteractive
RUN buildDeps=' \
ca-certificates \
curl \
gnupg \
' \
&& set -x \
&& mkdir -p /etc/xdg/QtProject \
&& apt-get update && apt-get install -y $buildDeps --no-install-recommends \
&& rm -rf /var/lib/apt/lists/* \
&& curl -sSL https://www.virtualbox.org/download/oracle_vbox_2016.asc | apt-key add - \
&& echo "deb http://download.virtualbox.org/virtualbox/debian stretch contrib" >> /etc/apt/sources.list.d/virtualbox.list \
&& apt-get update && apt-get install -y \
virtualbox-5.2 \
--no-install-recommends \
&& apt-get purge -y --auto-remove $buildDeps
2015-04-28 19:30:19 +02:00
ENTRYPOINT [ "/usr/bin/virtualbox" ]