summaryrefslogtreecommitdiff
path: root/_ci
diff options
context:
space:
mode:
authoruvok cheetah2026-06-04 20:51:45 +0200
committeruvok cheetah2026-06-05 19:32:04 +0200
commit62ef2d5c9c95d9a5be669512b1a74547f9b3af52 (patch)
treee56393bc8cec762573e4c6f53106d37342810caa /_ci
parentbca915d2f3e399528b629a4502a3804e5b22cbb0 (diff)
Add Podman file
Diffstat (limited to '_ci')
-rw-r--r--_ci/Containerfile10
1 files changed, 10 insertions, 0 deletions
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"]