Minimal Dockerfile (#326)

This commit is contained in:
Jennings Zhang 2018-02-25 20:42:59 -05:00 committed by Dean Attali
parent d94b79d59d
commit 6324978f6b

View File

@ -1,12 +1,8 @@
FROM jekyll/jekyll
WORKDIR /srv/jekyll
COPY Gemfile .
COPY Gemfile.lock .
RUN gem install bundler
RUN bundle install --quiet --clean
EXPOSE 4000
ENTRYPOINT ["jekyll", "serve"]
CMD ["jekyll", "serve"]