summaryrefslogtreecommitdiff
path: root/_ci/Containerfile
diff options
context:
space:
mode:
authoruvok cheetah2026-06-14 18:39:33 +0200
committeruvok cheetah2026-06-14 18:39:39 +0200
commit7b0de5504de62dd583ba86e0c99a3ce0838a1638 (patch)
treeac46a8b01aef7b40b4914966110b5866dea5b87d /_ci/Containerfile
parentef80e24f21b8ad2b1b03e2563590f187996bdd38 (diff)
ci: Remove bundle cache
Diffstat (limited to '_ci/Containerfile')
-rw-r--r--_ci/Containerfile2
1 files changed, 1 insertions, 1 deletions
diff --git a/_ci/Containerfile b/_ci/Containerfile
index 2621a03..f5d88b4 100644
--- a/_ci/Containerfile
+++ b/_ci/Containerfile
@@ -1,7 +1,7 @@
FROM docker.io/library/ruby:3.3 AS builder
WORKDIR /srv/jekyll
COPY Gemfile* ./
-RUN bundle install
+RUN bundle install && rm -rf /usr/local/bundle/cache
FROM docker.io/library/ruby:3.3-slim
RUN apt-get update && apt-get install --no-install-recommends -y git && apt-get clean && rm -rf /var/lib/apt/lists/*