init commit

This commit is contained in:
Jessica Frazelle
2014-09-11 10:52:11 -07:00
commit b6a9a32c0b
5 changed files with 54 additions and 0 deletions

15
idonethis/Dockerfile Normal file
View File

@@ -0,0 +1,15 @@
FROM ruby:1.9.3-p547
MAINTAINER Jessica Frazelle <jess@docker.com>
# update gems
RUN gem update --system
RUN gem update
# install idonethis from git
COPY src/ /idonethis
RUN cd /idonethis; rake build; gem install /idonethis/pkg/idonethis-0.1.0.gem;
COPY .idonethisrc /
COPY main.sh /
ENTRYPOINT ["/main.sh"]