From dbac6803b0f364d7727c42faa692f6a9b449bc51 Mon Sep 17 00:00:00 2001 From: Conor Heine Date: Thu, 26 Nov 2015 22:38:30 -0800 Subject: [PATCH] Added Dockerfile --- Dockerfile | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) create mode 100644 Dockerfile diff --git a/Dockerfile b/Dockerfile new file mode 100644 index 00000000..7ad4d562 --- /dev/null +++ b/Dockerfile @@ -0,0 +1,17 @@ + +FROM ruby:2.2.2 +MAINTAINER Conor Heine + +RUN apt-get update +RUN apt-get -y install git nodejs +RUN git clone https://github.com/Thibaut/devdocs.git /devdocs +RUN gem install bundler + +WORKDIR /devdocs + +RUN bundle install --system +RUN thor docs:download --all + +EXPOSE 9292 +CMD rackup -o 0.0.0.0 +