beautifulSA-jekyll/Dockerfile

14 lines
261 B
Docker
Raw Normal View History

2018-01-15 07:25:22 +01:00
FROM jekyll/jekyll
2018-01-15 07:25:22 +01:00
WORKDIR /srv/jekyll
COPY Gemfile .
RUN gem install bundler
2018-01-15 07:25:22 +01:00
RUN bundle install --clean --quiet
EXPOSE 4000
2018-01-15 07:25:22 +01:00
CMD [ "/usr/gem/bin/bundle", "exec", "/usr/local/bundle/bin/jekyll", "serve", "--port", "4000", "--host", "0.0.0.0" ]
STOPSIGNAL 2