2 Commits

Author SHA1 Message Date
b8737c2583 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
2025-04-28 13:19:43 -05:00
8baed7389c bundle update 2025-04-28 13:00:16 -05:00
3 changed files with 10 additions and 6 deletions

View File

@ -11,7 +11,7 @@ GEM
csv
mini_mime (>= 1.0.0)
multi_xml (>= 0.5.2)
json (2.10.2)
json (2.11.3)
jwt (2.10.1)
base64
ksuid (1.0.0)
@ -65,7 +65,7 @@ GEM
diff-lcs (>= 1.2.0, < 2.0)
rspec-support (~> 3.13.0)
rspec-support (3.13.2)
rubocop (1.75.2)
rubocop (1.75.4)
json (~> 2.3)
language_server-protocol (~> 3.17.0.2)
lint_roller (~> 1.1.0)
@ -83,7 +83,7 @@ GEM
lint_roller (~> 1.1)
rubocop (>= 1.75.0, < 2.0)
rubocop-ast (>= 1.38.0, < 2.0)
ruby-lsp (0.23.14)
ruby-lsp (0.23.15)
language_server-protocol (~> 3.17.0)
prism (>= 1.2, < 2.0)
rbs (>= 3, < 4)
@ -103,7 +103,7 @@ GEM
rack-protection (= 4.1.1)
sinatra (= 4.1.1)
tilt (~> 2.0)
sorbet-runtime (0.5.12026)
sorbet-runtime (0.5.12043)
standard (1.49.0)
language_server-protocol (~> 3.17.0.2)
lint_roller (~> 1.0)

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