Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add webrick as Ruby 3 doesn’t include it #914

Open
wants to merge 2 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
2 changes: 2 additions & 0 deletions Dockerfile
Expand Up @@ -28,6 +28,8 @@ ENV LANG en_US.UTF-8
ENV LANGUAGE en_US.UTF-8
ENV LC_ALL en_US.UTF-8

ENV BUNDLE_GEMFILE=/src/gh/pages-gem/Gemfile

WORKDIR /src/site

CMD ["jekyll", "serve", "-H", "0.0.0.0", "-P", "4000"]
2 changes: 2 additions & 0 deletions Dockerfile.alpine
Expand Up @@ -17,6 +17,8 @@ ENV LANG en_US.UTF-8
ENV LANGUAGE en_US.UTF-8
ENV LC_ALL en_US.UTF-8

ENV BUNDLE_GEMFILE=/src/gh/pages-gem/Gemfile

WORKDIR /src/site

CMD ["jekyll", "serve", "-H", "0.0.0.0", "-P", "4000"]
1 change: 1 addition & 0 deletions lib/github-pages/dependencies.rb
Expand Up @@ -9,6 +9,7 @@ class Dependencies
# Jekyll
"jekyll" => "3.9.5",
"jekyll-sass-converter" => "1.5.2",
"webrick" => "1.8.1",

# Converters
"kramdown" => "2.4.0",
Expand Down