Created
July 14, 2014 23:00
-
-
Save capoferro/9e75a448a5cb4c847446 to your computer and use it in GitHub Desktop.
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
# http://docs.docker.com/reference/builder/ | |
# FROM - what is the base image for this Dockerfile? | |
FROM ubuntu | |
# MAINTAINER - who owns this Dockerfile? | |
MAINTAINER Josiah Kiehl | |
# Install Ruby | |
RUN apt-get install build-essential ruby ruby-dev -y | |
# Install the 'httparty' gem | |
RUN gem install httparty | |
# Add the application | |
ADD telephone.rb / | |
# Add a CMD | |
CMD ruby /telephone.rb |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment