diff options
Diffstat (limited to '_ci/Containerfile')
| -rw-r--r-- | _ci/Containerfile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/_ci/Containerfile b/_ci/Containerfile index 35c377a..2621a03 100644 --- a/_ci/Containerfile +++ b/_ci/Containerfile @@ -4,7 +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/* +RUN apt-get update && apt-get install --no-install-recommends -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 |
