d94b79d59d
Container was not working because didn't have all dependencies, and change CMD command for ENTRYPOINT.
13 lines
180 B
Docker
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"]
|