Skip to content

Commit a3d24a4

Browse files
committed
Switch default to just follow Debian updates so we just get stable path
1 parent 7904527 commit a3d24a4

File tree

5 files changed

+4
-12
lines changed

5 files changed

+4
-12
lines changed

Dockerfile

Lines changed: 2 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -1,19 +1,10 @@
1-
FROM ruby:3.3-bookworm
1+
FROM ruby:3.4-trixie
22

33
RUN apt-get update \
44
&& apt-get install -y --quiet --no-install-recommends \
5-
nodejs npm
6-
7-
ENV GEM_HOME=/usr/gem
8-
ENV PATH="$GEM_HOME/bin/:$PATH"
9-
10-
RUN gem install bundler -v '2.6.3'
11-
# throw errors if Gemfile has been modified since Gemfile.lock
12-
RUN bundle config --global frozen 1
5+
npm jekyll ruby-jekyll-github-metadata ruby-jekyll-relative-links ruby-jekyll-paginate-v2 ruby-jekyll-titles-from-headings
136

147
WORKDIR /srv/jekyll
15-
COPY Gemfile Gemfile.lock ./
16-
RUN bundle install
178

189
# Add so gh-pages can detect git remotes
1910
RUN git config --global --add safe.directory /srv/jekyll
File renamed without changes.
File renamed without changes.

cspell.json

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,7 @@
1919
"ublabs",
2020
"customised",
2121
"customise",
22+
"trixie",
2223
"shfmt"
2324
]
2425
}

docker-compose.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ services:
66
environment:
77
- JEKYLL_ENV=development
88
- LANG=C.UTF-8
9-
command: bundle exec jekyll serve --watch --incremental --host 0.0.0.0
9+
command: jekyll serve --watch --incremental --host 0.0.0.0
1010
ports:
1111
- "4000:4000"
1212
volumes:

0 commit comments

Comments
 (0)