-
-
Save blebo/99b105b8ed3e500facc0 to your computer and use it in GitHub Desktop.
Revisions
-
blebo revised this gist
May 16, 2014 . 1 changed file with 4 additions and 4 deletions.There are no files selected for viewing
This file contains hidden or 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 charactersOriginal file line number Diff line number Diff line change @@ -1,12 +1,12 @@ FROM ubuntu:raring # ubuntu raring image doesn't have universe repo run echo "deb http://archive.ubuntu.com/ubuntu raring main universe" > /etc/apt/sources.list run apt-get update RUN apt-get install -y wget # install ROS RUN sh -c 'echo "deb http://packages.ros.org/ros/ubuntu raring main" > /etc/apt/sources.list.d/ros-latest.list' RUN wget http://packages.ros.org/ros.key -O - | apt-key add - RUN apt-get update RUN apt-get install -y ros-hydro-desktop-full -
jonbinney revised this gist
Nov 8, 2013 . 1 changed file with 1 addition and 1 deletion.There are no files selected for viewing
This file contains hidden or 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 charactersOriginal file line number Diff line number Diff line change @@ -1,4 +1,4 @@ FROM ubuntu:precise # ubuntu precise image doesn't have universe repo run echo "deb http://archive.ubuntu.com/ubuntu precise main universe" > /etc/apt/sources.list -
jonbinney renamed this gist
Nov 8, 2013 . 1 changed file with 0 additions and 0 deletions.There are no files selected for viewing
File renamed without changes. -
jonbinney created this gist
Nov 8, 2013 .There are no files selected for viewing
This file contains hidden or 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 charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1,18 @@ ROM ubuntu:precise # ubuntu precise image doesn't have universe repo run echo "deb http://archive.ubuntu.com/ubuntu precise main universe" > /etc/apt/sources.list run apt-get update RUN apt-get install -y wget # install ROS RUN sh -c 'echo "deb http://packages.ros.org/ros/ubuntu precise main" > /etc/apt/sources.list.d/ros-latest.list' RUN wget http://packages.ros.org/ros.key -O - | apt-key add - RUN apt-get update RUN apt-get install -y ros-hydro-desktop-full # install fake vnc desktop run apt-get install -y x11vnc xvfb run mkdir /.vnc # Setup a password run x11vnc -storepasswd 1234 ~/.vnc/passwd