From 72607632b2c805e0a85f48aac604757fb723f4f5 Mon Sep 17 00:00:00 2001 From: Jess Frazelle Date: Thu, 11 Aug 2016 19:15:28 -0700 Subject: [PATCH] fix virtualbox Signed-off-by: Jess Frazelle --- virtualbox/Dockerfile | 14 ++++++++------ 1 file changed, 8 insertions(+), 6 deletions(-) diff --git a/virtualbox/Dockerfile b/virtualbox/Dockerfile index aff6488..29b06c0 100644 --- a/virtualbox/Dockerfile +++ b/virtualbox/Dockerfile @@ -29,21 +29,23 @@ # rm -rf /usr/share/virtualbox # rm vboxdrv # -FROM debian:jessie +FROM debian:stretch MAINTAINER Jessie Frazelle RUN apt-get update && apt-get install -y \ ca-certificates \ curl \ - --no-install-recommends && \ - curl -sSL https://www.virtualbox.org/download/oracle_vbox.asc | apt-key add - && \ - echo "deb http://download.virtualbox.org/virtualbox/debian vivid contrib" >> /etc/apt/sources.list.d/virtualbox.list && \ - apt-get update && \ - apt-get install -y \ + gnupg \ + --no-install-recommends \ + && 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.0 \ + --no-install-recommends \ && apt-get purge -y --auto-remove \ ca-certificates \ curl \ + gnupg \ && rm -rf /var/lib/apt/lists/* ENTRYPOINT [ "/usr/bin/virtualbox" ]