From 62ef2d5c9c95d9a5be669512b1a74547f9b3af52 Mon Sep 17 00:00:00 2001 From: uvok cheetah Date: Thu, 4 Jun 2026 20:51:45 +0200 Subject: Add Podman file --- _ci/Containerfile | 10 ++++++++++ 1 file changed, 10 insertions(+) create mode 100644 _ci/Containerfile (limited to '_ci') diff --git a/_ci/Containerfile b/_ci/Containerfile new file mode 100644 index 0000000..7556069 --- /dev/null +++ b/_ci/Containerfile @@ -0,0 +1,10 @@ +FROM docker.io/library/ruby:3.3 AS builder +WORKDIR /srv/jekyll +COPY Gemfile* ./ +RUN bundle install + +FROM docker.io/library/ruby:3.3-slim +WORKDIR /srv/jekyll +COPY --from=builder /usr/local/bundle /usr/local/bundle +COPY --from=builder /srv/jekyll /srv/jekyll +CMD ["bundle", "exec", "jekyll", "build"] -- cgit v1.2.3