Rebase Docker image on the official Ruby 2.2 image.

https://registry.hub.docker.com/_/ruby/
This commit is contained in:
breandan 2015-07-26 20:53:37 -04:00
parent e5512775e1
commit ad9de088a2

13
Dockerfile Normal file
View File

@ -0,0 +1,13 @@
FROM ruby:2.2
RUN apt-get update
RUN apt-get --yes install nodejs
WORKDIR /usr/src/app
EXPOSE 4000
CMD \
rake bootstrap && \
rake preview