enable bundler deployment mode
All checks were successful
Gitea Actions Demo / lint (push) Successful in 34s
Gitea Actions Demo / test (push) Successful in 18s
Gitea Actions Demo / docker (push) Successful in 3m17s

This commit is contained in:
Ryan Cavicchioni 2025-04-28 13:19:43 -05:00
parent 8baed7389c
commit b8737c2583
Signed by: ryanc
SSH Key Fingerprint: SHA256:FEbwJ3JyWHwYNAM8BqctZ/LmHHg1bzfi/huOj7FxlXU
2 changed files with 6 additions and 2 deletions

View File

@ -12,6 +12,9 @@ EOT
FROM base AS build
ENV BUNDLE_DEPLOYMENT=true \
BUNDLE_WITHOUT="development test"
RUN <<EOT
apk add musl-dev gcc make
EOT
@ -19,7 +22,6 @@ EOT
COPY Gemfile* .
RUN <<EOT
bundle config set --local without development
bundle install
EOT

View File

@ -12,6 +12,9 @@ EOT
FROM base AS build
ENV BUNDLE_DEPLOYMENT=true \
BUNDLE_WITHOUT="development test"
RUN <<EOT
apt-get install --yes gcc make
EOT
@ -19,7 +22,6 @@ EOT
COPY Gemfile* .
RUN <<EOT
bundle config set --local without development
bundle install
EOT