beautifulSA-jekyll/Dockerfile
Josemy Duarte d94b79d59d Container now have all proper dependencies (#322)
Container was not working because didn't have all dependencies, and change CMD command for ENTRYPOINT.
2018-02-25 20:25:21 -05:00

13 lines
180 B
Docker

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"]