Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .ruby-version
Original file line number Diff line number Diff line change
@@ -1 +1 @@
~> 3.3
~> 3.4
4 changes: 2 additions & 2 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
# The base stage scaffolds elements which are common to building and running
# the application, such as installing ca-certificates, creating the app user,
# and installing runtime system dependencies.
FROM ruby:3.3-slim AS base
FROM ruby:3.4-slim AS base

# ------------------------------------------------------------
# Create the application user/group and installation directory
Expand Down Expand Up @@ -65,7 +65,7 @@ RUN apt-get install -y --no-install-recommends \
USER $APP_USER

# Base image ships with an older version of bundler
RUN gem install bundler --version 2.2.33
RUN gem install bundler --version 4.0.15

# Install gems. We don't enforce the validity of the Gemfile.lock until the
# final (production) stage.
Expand Down
4 changes: 2 additions & 2 deletions Gemfile.lock
Original file line number Diff line number Diff line change
Expand Up @@ -93,7 +93,7 @@ DEPENDENCIES
webmock

RUBY VERSION
ruby 3.3.11
ruby 3.4.10

BUNDLED WITH
4.0.9
4.0.15
Loading