diff options
| author | uvok cheetah | 2026-06-04 20:51:45 +0200 |
|---|---|---|
| committer | uvok cheetah | 2026-06-05 19:32:04 +0200 |
| commit | 62ef2d5c9c95d9a5be669512b1a74547f9b3af52 (patch) | |
| tree | e56393bc8cec762573e4c6f53106d37342810caa /_ci | |
| parent | bca915d2f3e399528b629a4502a3804e5b22cbb0 (diff) | |
Add Podman file
Diffstat (limited to '_ci')
| -rw-r--r-- | _ci/Containerfile | 10 |
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"] |
