1
0
mirror of https://github.com/jessfraz/dockerfiles.git synced 2025-04-13 23:52:44 +02:00
This commit is contained in:
Jessica Frazelle 2014-10-15 21:11:30 -07:00
parent 812193a6b1
commit 9280bae86f

12
cloudapp/Dockerfile Normal file

@ -0,0 +1,12 @@
FROM ruby:latest
MAINTAINER Jessica Frazelle <jess@docker.com>
# update gems
RUN gem update --system
RUN gem update
# install cloudapp
RUN gem install gem-man
RUN gem install cloudapp
ENTRYPOINT ["cloudapp"]