diff options
| author | uvok cheetah | 2026-06-15 19:26:50 +0200 |
|---|---|---|
| committer | uvok cheetah | 2026-06-15 19:26:50 +0200 |
| commit | 4dd4d4adbe72b3dc7b5cb2675e30b7bb1f4a568b (patch) | |
| tree | d32a18612b3574aeea98fc3b70881f9cb4448ce1 /_ci | |
| parent | 51d06745e513586f617daa61bd95af45c4e7ff17 (diff) | |
Diffstat (limited to '_ci')
| -rw-r--r-- | _ci/Containerfile | 2 | ||||
| -rw-r--r-- | _ci/Containerfile.alpine | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/_ci/Containerfile b/_ci/Containerfile index f5d88b4..19c4f07 100644 --- a/_ci/Containerfile +++ b/_ci/Containerfile @@ -4,7 +4,7 @@ COPY Gemfile* ./ 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/* +RUN apt-get update && apt-get install --no-install-recommends -y git make && 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 diff --git a/_ci/Containerfile.alpine b/_ci/Containerfile.alpine index a5aa619..49acd7d 100644 --- a/_ci/Containerfile.alpine +++ b/_ci/Containerfile.alpine @@ -5,7 +5,7 @@ COPY Gemfile* ./ RUN bundle install && rm -rf /usr/local/bundle/cache FROM docker.io/library/ruby:3.3-alpine3.23 -RUN apk update && apk add --no-cache git libstdc++ && rm -rf /var/cache/apk/* +RUN apk update && apk add --no-cache git libstdc++ make && rm -rf /var/cache/apk/* WORKDIR /srv/jekyll COPY --from=builder /usr/local/bundle /usr/local/bundle CMD ["bundle", "exec", "jekyll", "build"] |
