Created
November 12, 2014 05:02
-
-
Save andre/4f45e472de2f4de0099c 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
FROM ubuntu:trusty | |
RUN apt-get update && apt-get install -y ruby ruby-dev gcc make curl | |
RUN gem install sinatra --no-rdoc --no-ri | |
ADD . /srv/ | |
# start it up | |
WORKDIR /srv/ | |
EXPOSE 5000 | |
CMD ["ruby", "main.rb"] |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment