Skip to content

Commit

Permalink
Fix latest build deployment
Browse files Browse the repository at this point in the history
  • Loading branch information
Tom Dymel committed Jan 19, 2024
1 parent f83ca07 commit fd81dfb
Show file tree
Hide file tree
Showing 35 changed files with 163,020 additions and 1,497 deletions.
7 changes: 1 addition & 6 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -1,15 +1,10 @@
FROM ruby:3-alpine
FROM ruby:3

# throw errors if Gemfile has been modified since Gemfile.lock
RUN bundle config --global frozen 1

WORKDIR /srv/jekyll

RUN apk add --no-cache \
g++ \
make \
libc6-compat

COPY Gemfile .
COPY Gemfile.lock .

Expand Down
2 changes: 2 additions & 0 deletions Gemfile
Original file line number Diff line number Diff line change
Expand Up @@ -6,3 +6,5 @@ gem "jekyll", "~> 4.3.2"
gem "jekyll-include-cache", group: :jekyll_plugins
gem "jemoji", "~> 0.13.0", group: :jekyll_plugins
gem "minimal-mistakes-jekyll", "~> 4.24"
gem 'json', '~> 2.6', '>= 2.6.3'
gem 'webrick', '~> 1.8', '>= 1.8.1'
57 changes: 37 additions & 20 deletions Gemfile.lock
Original file line number Diff line number Diff line change
@@ -1,34 +1,44 @@
GEM
remote: https://rubygems.org/
specs:
activesupport (7.0.5)
activesupport (7.1.3)
base64
bigdecimal
concurrent-ruby (~> 1.0, >= 1.0.2)
connection_pool (>= 2.2.5)
drb
i18n (>= 1.6, < 2)
minitest (>= 5.1)
mutex_m
tzinfo (~> 2.0)
addressable (2.8.1)
addressable (2.8.6)
public_suffix (>= 2.0.2, < 6.0)
base64 (0.2.0)
bigdecimal (3.1.6)
colorator (1.1.0)
concurrent-ruby (1.2.2)
concurrent-ruby (1.2.3)
connection_pool (2.4.1)
drb (2.2.0)
ruby2_keywords
em-websocket (0.5.3)
eventmachine (>= 0.12.9)
http_parser.rb (~> 0)
eventmachine (1.2.7)
faraday (2.6.0)
faraday-net_http (>= 2.0, < 3.1)
ruby2_keywords (>= 0.0.4)
faraday-net_http (3.0.1)
ffi (1.15.5)
faraday (2.9.0)
faraday-net_http (>= 2.0, < 3.2)
faraday-net_http (3.1.0)
net-http
ffi (1.16.3)
forwardable-extended (2.6.0)
gemoji (4.1.0)
google-protobuf (3.23.3)
google-protobuf (3.25.2)
html-pipeline (2.14.3)
activesupport (>= 2)
nokogiri (>= 1.4)
http_parser.rb (0.8.0)
i18n (1.14.1)
concurrent-ruby (~> 1.0)
jekyll (4.3.2)
jekyll (4.3.3)
addressable (~> 2.4)
colorator (~> 1.0)
em-websocket (~> 0.5)
Expand Down Expand Up @@ -61,6 +71,7 @@ GEM
gemoji (>= 3, < 5)
html-pipeline (~> 2.2)
jekyll (>= 3.0, < 5.0)
json (2.7.1)
kramdown (2.4.0)
rexml
kramdown-parser-gfm (1.1.0)
Expand All @@ -70,34 +81,37 @@ GEM
rb-fsevent (~> 0.10, >= 0.10.3)
rb-inotify (~> 0.9, >= 0.9.10)
mercenary (0.4.0)
mini_portile2 (2.8.2)
mini_portile2 (2.8.5)
minimal-mistakes-jekyll (4.24.0)
jekyll (>= 3.7, < 5.0)
jekyll-feed (~> 0.1)
jekyll-gist (~> 1.5)
jekyll-include-cache (~> 0.1)
jekyll-paginate (~> 1.1)
jekyll-sitemap (~> 1.3)
minitest (5.18.1)
nokogiri (1.15.2)
minitest (5.21.2)
mutex_m (0.2.0)
net-http (0.4.1)
uri
nokogiri (1.16.0)
mini_portile2 (~> 2.8.2)
racc (~> 1.4)
octokit (4.25.1)
faraday (>= 1, < 3)
sawyer (~> 0.9)
pathutil (0.16.2)
forwardable-extended (~> 2.6)
public_suffix (5.0.0)
racc (1.7.1)
rake (13.0.6)
public_suffix (5.0.4)
racc (1.7.3)
rake (13.1.0)
rb-fsevent (0.11.2)
rb-inotify (0.10.1)
ffi (~> 1.0)
rexml (3.2.5)
rouge (4.1.2)
rexml (3.2.6)
rouge (4.2.0)
ruby2_keywords (0.0.5)
safe_yaml (1.0.5)
sass-embedded (1.63.5)
sass-embedded (1.69.5)
google-protobuf (~> 3.23)
rake (>= 13.0.0)
sawyer (0.9.2)
Expand All @@ -107,7 +121,8 @@ GEM
unicode-display_width (>= 1.1.1, < 3)
tzinfo (2.0.6)
concurrent-ruby (~> 1.0)
unicode-display_width (2.4.2)
unicode-display_width (2.5.0)
uri (0.13.0)
webrick (1.8.1)

PLATFORMS
Expand All @@ -117,7 +132,9 @@ DEPENDENCIES
jekyll (~> 4.3.2)
jekyll-include-cache
jemoji (~> 0.13.0)
json (~> 2.6, >= 2.6.3)
minimal-mistakes-jekyll (~> 4.24)
webrick (~> 1.8, >= 1.8.1)

BUNDLED WITH
2.4.14
Loading

0 comments on commit fd81dfb

Please sign in to comment.