mirror of
https://github.com/acaloiaro/acaloiaro.github.io
synced 2026-07-21 10:12:29 +00:00
8 lines
116 B
Docker
8 lines
116 B
Docker
FROM jekyll/jekyll
|
|
|
|
COPY Gemfile .
|
|
COPY Gemfile.lock .
|
|
|
|
RUN bundle install --quiet --clean
|
|
|
|
CMD ["jekyll", "serve"]
|