This repository has been archived by the owner on Feb 27, 2018. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 259
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Update to Docker 0.9.1 and VirtualBox 4.3.10
- Loading branch information
Showing
1 changed file
with
2 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,7 @@ | ||
FROM ubuntu:12.04 | ||
MAINTAINER Steeve Morin "[email protected]" | ||
|
||
ENV DOCKER_VERSION 0.8.1 | ||
ENV DOCKER_VERSION 0.9.1 | ||
|
||
# make sure the package repository is up to date | ||
RUN echo "deb http://archive.ubuntu.com/ubuntu precise main universe multiverse" > /etc/apt/sources.list | ||
|
@@ -31,7 +31,7 @@ ADD mpkg /mpkg | |
# Downloading VirtualBox and extract the .pkg | ||
RUN mkdir -p /mpkg/vbox && \ | ||
cd /mpkg/vbox && \ | ||
curl -L -o vbox.dmg http://download.virtualbox.org/virtualbox/4.3.8/VirtualBox-4.3.8-92456-OSX.dmg && \ | ||
curl -L -o vbox.dmg http://download.virtualbox.org/virtualbox/4.3.10/VirtualBox-4.3.10-93012-OSX.dmg && \ | ||
7z x vbox.dmg -ir'!*.hfs' && \ | ||
7z x `find . -name '*.hfs'` -ir'!*.pkg' && \ | ||
mv VirtualBox/VirtualBox.pkg . && \ | ||
|