Adding Jekyll container which includes very basic starter content

This commit is contained in:
Geoff Bourne
2014-06-29 22:44:51 +00:00
parent e4418b3767
commit ebb4ee2214
11 changed files with 94 additions and 0 deletions
+22
View File
@@ -0,0 +1,22 @@
FROM ubuntu:trusty
MAINTAINER itzg
RUN apt-get update
RUN apt-get -y upgrade
RUN apt-get -y install ruby ruby-dev make patch
RUN gem install bundler
ADD Gemfile /tmp/Gemfile
WORKDIR /tmp
RUN bundle install
ADD template /site-template
VOLUME ["/site"]
EXPOSE 4000
ADD start.sh /start
CMD ["/start"]