mirror of
https://github.com/Ownercz/ssme-thesis.git
synced 2025-05-18 13:56:27 +02:00
9 lines
116 B
Docker
9 lines
116 B
Docker
FROM jekyll/jekyll
|
|
|
|
COPY Gemfile .
|
|
COPY Gemfile.lock .
|
|
|
|
RUN bundle install --quiet --clean
|
|
|
|
CMD ["jekyll", "serve"]
|