mirror of
https://github.com/jessfraz/dockerfiles.git
synced 2025-04-03 19:00:42 +02:00
virtualbox cleanup
Signed-off-by: Jess Frazelle <acidburn@google.com>
This commit is contained in:
parent
589db818b7
commit
9819aa12b6
@ -32,20 +32,19 @@
|
|||||||
FROM debian:sid
|
FROM debian:sid
|
||||||
MAINTAINER Jessie Frazelle <jess@linux.com>
|
MAINTAINER Jessie Frazelle <jess@linux.com>
|
||||||
|
|
||||||
RUN apt-get update && apt-get install -y \
|
RUN buildDeps=' \
|
||||||
ca-certificates \
|
ca-certificates \
|
||||||
curl \
|
curl \
|
||||||
gnupg \
|
gnupg \
|
||||||
--no-install-recommends \
|
' \
|
||||||
|
&& set -x \
|
||||||
|
&& 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 - \
|
&& 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 \
|
&& echo "deb http://download.virtualbox.org/virtualbox/debian stretch contrib" >> /etc/apt/sources.list.d/virtualbox.list \
|
||||||
&& apt-get update && apt-get install -y \
|
&& apt-get update && apt-get install -y \
|
||||||
virtualbox-5.0 \
|
virtualbox-5.0 \
|
||||||
--no-install-recommends \
|
--no-install-recommends \
|
||||||
&& apt-get purge -y --auto-remove \
|
&& apt-get purge -y --auto-remove $buildDeps
|
||||||
ca-certificates \
|
|
||||||
curl \
|
|
||||||
gnupg \
|
|
||||||
&& rm -rf /var/lib/apt/lists/*
|
|
||||||
|
|
||||||
ENTRYPOINT [ "/usr/bin/virtualbox" ]
|
ENTRYPOINT [ "/usr/bin/virtualbox" ]
|
||||||
|
Loading…
x
Reference in New Issue
Block a user