From 597dacae7ab8ea1fd2e02cc632c70f60aedd084b Mon Sep 17 00:00:00 2001 From: Brian Moses Hall Date: Mon, 28 Jul 2025 10:48:17 -0400 Subject: [PATCH] July 2025 dependency updates - `bundle update --bundler` - `bundle update` - Change deprecated `ENV X Y` to `ENV X=Y` in Dockerfile --- Dockerfile | 9 ++------- Gemfile.lock | 18 +++++++++--------- 2 files changed, 11 insertions(+), 16 deletions(-) diff --git a/Dockerfile b/Dockerfile index 2c19c37..8d827c2 100644 --- a/Dockerfile +++ b/Dockerfile @@ -5,25 +5,20 @@ ARG UID=1000 ARG GID=1000 WORKDIR /usr/src/app -# -ENV BUNDLE_PATH /gems -# + +ENV BUNDLE_PATH=/gems RUN gem install bundler FROM base AS development RUN apt-get update -yqq && apt-get install -yqq --no-install-recommends - FROM base AS production -ENV BUNDLE_PATH /gems - RUN groupadd -g $GID -o $UNAME RUN useradd -m -d /usr/src/app -u $UID -g $GID -o -s /bin/bash $UNAME RUN mkdir -p /gems && chown $UID:$GID /gems - COPY --chown=$UID:$GID Gemfile* /usr/src/app/ WORKDIR /usr/src/app diff --git a/Gemfile.lock b/Gemfile.lock index dc7783d..52a7b4c 100644 --- a/Gemfile.lock +++ b/Gemfile.lock @@ -10,18 +10,18 @@ GEM coderay (1.1.3) diff-lcs (1.6.2) docile (1.4.1) - json (2.12.2) + json (2.13.2) language_server-protocol (3.17.0.5) lint_roller (1.1.0) logger (1.7.0) method_source (1.1.0) - multi_json (1.15.0) + multi_json (1.17.0) mustermann (3.0.3) ruby2_keywords (~> 0.0.1) mysql2 (0.5.6) nio4r (2.7.4) parallel (1.27.0) - parser (3.3.8.0) + parser (3.3.9.0) ast (~> 2.4.1) racc prism (1.4.0) @@ -49,7 +49,7 @@ GEM rspec-core (~> 3.13.0) rspec-expectations (~> 3.13.0) rspec-mocks (~> 3.13.0) - rspec-core (3.13.4) + rspec-core (3.13.5) rspec-support (~> 3.13.0) rspec-expectations (3.13.5) diff-lcs (>= 1.2.0, < 2.0) @@ -69,7 +69,7 @@ GEM rubocop-ast (>= 1.44.0, < 2.0) ruby-progressbar (~> 1.7) unicode-display_width (>= 2.4.0, < 4.0) - rubocop-ast (1.45.0) + rubocop-ast (1.46.0) parser (>= 3.3.7.2) prism (~> 1.4) rubocop-performance (1.25.0) @@ -78,13 +78,13 @@ GEM rubocop-ast (>= 1.38.0, < 2.0) ruby-progressbar (1.13.0) ruby2_keywords (0.0.5) - sequel (5.93.0) + sequel (5.94.0) bigdecimal simplecov (0.22.0) docile (~> 1.1) simplecov-html (~> 0.11) simplecov_json_formatter (~> 0.1) - simplecov-html (0.13.1) + simplecov-html (0.13.2) simplecov-lcov (0.8.0) simplecov_json_formatter (0.1.4) sinatra (4.1.1) @@ -112,7 +112,7 @@ GEM standard-performance (1.8.0) lint_roller (~> 1.1) rubocop-performance (~> 1.25.0) - tilt (2.6.0) + tilt (2.6.1) unicode-display_width (3.1.4) unicode-emoji (~> 4.0, >= 4.0.4) unicode-emoji (4.0.4) @@ -140,4 +140,4 @@ DEPENDENCIES standard BUNDLED WITH - 2.6.8 + 2.7.1