summaryrefslogtreecommitdiff
path: root/_ci/Containerfile
diff options
context:
space:
mode:
authoruvok cheetah2026-06-05 20:28:14 +0200
committeruvok cheetah2026-06-05 20:28:14 +0200
commit27f3e77a6a1629dcb2f095075ed8030b28cfa2f3 (patch)
tree64319282907008c9afe4fe544bde633fbf5979bd /_ci/Containerfile
parent06568608b32d0a426a218c61ddbf104779239129 (diff)
Add git to image
Diffstat (limited to '_ci/Containerfile')
-rw-r--r--_ci/Containerfile1
1 files changed, 1 insertions, 0 deletions
diff --git a/_ci/Containerfile b/_ci/Containerfile
index 7556069..35c377a 100644
--- a/_ci/Containerfile
+++ b/_ci/Containerfile
@@ -4,6 +4,7 @@ COPY Gemfile* ./
RUN bundle install
FROM docker.io/library/ruby:3.3-slim
+RUN apt-get update && apt-get install -y git && apt-get clean && rm -rf /var/lib/apt/lists/*
WORKDIR /srv/jekyll
COPY --from=builder /usr/local/bundle /usr/local/bundle
COPY --from=builder /srv/jekyll /srv/jekyll