Compare commits
2 Commits
f61eb8acb7
...
b8737c2583
Author | SHA1 | Date | |
---|---|---|---|
b8737c2583
|
|||
8baed7389c
|
@ -11,7 +11,7 @@ GEM
|
|||||||
csv
|
csv
|
||||||
mini_mime (>= 1.0.0)
|
mini_mime (>= 1.0.0)
|
||||||
multi_xml (>= 0.5.2)
|
multi_xml (>= 0.5.2)
|
||||||
json (2.10.2)
|
json (2.11.3)
|
||||||
jwt (2.10.1)
|
jwt (2.10.1)
|
||||||
base64
|
base64
|
||||||
ksuid (1.0.0)
|
ksuid (1.0.0)
|
||||||
@ -65,7 +65,7 @@ GEM
|
|||||||
diff-lcs (>= 1.2.0, < 2.0)
|
diff-lcs (>= 1.2.0, < 2.0)
|
||||||
rspec-support (~> 3.13.0)
|
rspec-support (~> 3.13.0)
|
||||||
rspec-support (3.13.2)
|
rspec-support (3.13.2)
|
||||||
rubocop (1.75.2)
|
rubocop (1.75.4)
|
||||||
json (~> 2.3)
|
json (~> 2.3)
|
||||||
language_server-protocol (~> 3.17.0.2)
|
language_server-protocol (~> 3.17.0.2)
|
||||||
lint_roller (~> 1.1.0)
|
lint_roller (~> 1.1.0)
|
||||||
@ -83,7 +83,7 @@ GEM
|
|||||||
lint_roller (~> 1.1)
|
lint_roller (~> 1.1)
|
||||||
rubocop (>= 1.75.0, < 2.0)
|
rubocop (>= 1.75.0, < 2.0)
|
||||||
rubocop-ast (>= 1.38.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)
|
language_server-protocol (~> 3.17.0)
|
||||||
prism (>= 1.2, < 2.0)
|
prism (>= 1.2, < 2.0)
|
||||||
rbs (>= 3, < 4)
|
rbs (>= 3, < 4)
|
||||||
@ -103,7 +103,7 @@ GEM
|
|||||||
rack-protection (= 4.1.1)
|
rack-protection (= 4.1.1)
|
||||||
sinatra (= 4.1.1)
|
sinatra (= 4.1.1)
|
||||||
tilt (~> 2.0)
|
tilt (~> 2.0)
|
||||||
sorbet-runtime (0.5.12026)
|
sorbet-runtime (0.5.12043)
|
||||||
standard (1.49.0)
|
standard (1.49.0)
|
||||||
language_server-protocol (~> 3.17.0.2)
|
language_server-protocol (~> 3.17.0.2)
|
||||||
lint_roller (~> 1.0)
|
lint_roller (~> 1.0)
|
||||||
|
@ -12,6 +12,9 @@ EOT
|
|||||||
|
|
||||||
FROM base AS build
|
FROM base AS build
|
||||||
|
|
||||||
|
ENV BUNDLE_DEPLOYMENT=true \
|
||||||
|
BUNDLE_WITHOUT="development test"
|
||||||
|
|
||||||
RUN <<EOT
|
RUN <<EOT
|
||||||
apk add musl-dev gcc make
|
apk add musl-dev gcc make
|
||||||
EOT
|
EOT
|
||||||
@ -19,7 +22,6 @@ EOT
|
|||||||
COPY Gemfile* .
|
COPY Gemfile* .
|
||||||
|
|
||||||
RUN <<EOT
|
RUN <<EOT
|
||||||
bundle config set --local without development
|
|
||||||
bundle install
|
bundle install
|
||||||
EOT
|
EOT
|
||||||
|
|
||||||
|
@ -12,6 +12,9 @@ EOT
|
|||||||
|
|
||||||
FROM base AS build
|
FROM base AS build
|
||||||
|
|
||||||
|
ENV BUNDLE_DEPLOYMENT=true \
|
||||||
|
BUNDLE_WITHOUT="development test"
|
||||||
|
|
||||||
RUN <<EOT
|
RUN <<EOT
|
||||||
apt-get install --yes gcc make
|
apt-get install --yes gcc make
|
||||||
EOT
|
EOT
|
||||||
@ -19,7 +22,6 @@ EOT
|
|||||||
COPY Gemfile* .
|
COPY Gemfile* .
|
||||||
|
|
||||||
RUN <<EOT
|
RUN <<EOT
|
||||||
bundle config set --local without development
|
|
||||||
bundle install
|
bundle install
|
||||||
EOT
|
EOT
|
||||||
|
|
||||||
|
Reference in New Issue
Block a user