dockerfiles/virtualbox/Dockerfile

22 lines
625 B
Docker
Raw Normal View History

2015-04-28 19:30:19 +02:00
# Run virtualbox in a container
#
# docker run -v /tmp/.X11-unix:/tmp/.X11-unix \
# -e DISPLAY=unix$DISPLAY \
# jess/virtualbox
2015-04-28 19:30:19 +02:00
#
FROM debian:jessie
MAINTAINER Jessie Frazelle <jess@linux.com>
RUN apt-get update && apt-get install -y \
ca-certificates \
curl \
software-properties-common \
--no-install-recommends && \
curl -sSL https://www.virtualbox.org/download/oracle_vbox.asc | apt-key add - && \
echo "deb http://download.virtualbox.org/virtualbox/debian jessie contrib" >> /etc/apt/sources.list.d/virtualbox.list && \
apt-get update && \
apt-get install -y \
virtualbox
2015-04-28 19:30:19 +02:00
ENTRYPOINT [ "/usr/bin/virtualbox" ]