Skip to content

Instantly share code, notes, and snippets.

@honzabrecka
Created October 19, 2018 10:23
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save honzabrecka/88a0061545554690abc18880849570df to your computer and use it in GitHub Desktop.
Save honzabrecka/88a0061545554690abc18880849570df to your computer and use it in GitHub Desktop.
FROM ruby:2.5
WORKDIR /usr/src/app
EXPOSE 4000
COPY Gemfile ./
RUN gem install jekyll rouge
RUN bundle install
COPY . .
CMD ["bundle", "exec", "jekyll", "serve", "-H", "0.0.0.0", "--watch"]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment