Skip to content

Instantly share code, notes, and snippets.

@harryyoud
Last active October 14, 2023 17:10
Show Gist options
  • Select an option

  • Save harryyoud/0977f6064d9c98ecab572e2b3c195f79 to your computer and use it in GitHub Desktop.

Select an option

Save harryyoud/0977f6064d9c98ecab572e2b3c195f79 to your computer and use it in GitHub Desktop.
FROM ruby:3.2
WORKDIR /src
ADD Gemfile /src
ADD Gemfile.lock /src
RUN gem install bundler
RUN bundle install
VOLUME /src
ENTRYPOINT [ "bundle", "exec", "jekyll", "build", "--future" ]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment