remove unnecessary container build steps
All checks were successful
Ruby Lint / lint (push) Successful in 14s
Ruby Test / test (push) Successful in 15s
Release / docker (push) Successful in 26m11s

This commit is contained in:
2025-06-28 18:51:00 -05:00
parent 9d730100b3
commit 8e3e81978a
2 changed files with 0 additions and 16 deletions

View File

@ -18,15 +18,8 @@ RUN \
apk update -q; \ apk update -q; \
apk add bash jemalloc apk add bash jemalloc
RUN \
--mount=type=cache,id=usr-local-bundle-cache,target=${BUNDLE_PATH},sharing=locked \
gem update --system --no-document; \
gem install -N bundler
FROM base AS build FROM base AS build
ARG TARGETARCH
RUN \ RUN \
--mount=type=cache,id=var-cache-apk-${TARGETARCH},target=/var/cache/apk,sharing=locked \ --mount=type=cache,id=var-cache-apk-${TARGETARCH},target=/var/cache/apk,sharing=locked \
apk update -q; \ apk update -q; \

View File

@ -23,18 +23,9 @@ RUN \
apt-get install --yes --no-install-recommends \ apt-get install --yes --no-install-recommends \
libjemalloc2 libjemalloc2
RUN \
--mount=type=cache,id=usr-local-bundle-cache,target=${BUNDLE_PATH},sharing=locked \
gem update --system --no-document; \
gem install -N bundler
ENV DEBIAN_FRONTEND="noninteractive"
FROM base AS build FROM base AS build
ARG TARGETARCH
RUN \ RUN \
--mount=type=cache,id=var-cache-apt-${TARGETARCH},target=/var/cache/apt,sharing=locked \ --mount=type=cache,id=var-cache-apt-${TARGETARCH},target=/var/cache/apt,sharing=locked \
--mount=type=cache,id=var-lib-apt-${TARGETARCH},target=/var/lib/apt,sharing=locked \ --mount=type=cache,id=var-lib-apt-${TARGETARCH},target=/var/lib/apt,sharing=locked \