Last active
October 14, 2023 17:10
-
-
Save harryyoud/0977f6064d9c98ecab572e2b3c195f79 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 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