Created
July 5, 2013 06:59
-
-
Save deepak/5932517 to your computer and use it in GitHub Desktop.
Dockerfile to install ruby using brightbox deb
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 characters
# DOCKER-VERSION 0.4.8 | |
FROM ubuntu:12.04 | |
MAINTAINER Deepak Kannan "[email protected]" | |
RUN apt-get -y install python-software-properties | |
RUN apt-add-repository -y ppa:brightbox/ruby-ng-experimental | |
RUN apt-get -y update | |
RUN apt-get -y install ruby2.0 ruby2.0-dev |
RUN apt-get -y install python-software-properties
RUN apt-get -y install software-properties-common
RUN add-apt-repository -y ppa:brightbox/ruby-ng-experimental
RUN apt-get -y update
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
I get the following error...
Ideas?