From 361fde42606d522b84394557ab3d6e340c8e42cf Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Fri, 27 Dec 2024 08:14:12 +0000 Subject: [PATCH] Bump ruby from 3.3.6-alpine to 3.4.1-alpine Bumps ruby from 3.3.6-alpine to 3.4.1-alpine. --- updated-dependencies: - dependency-name: ruby dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] --- Dockerfile | 4 ++-- dev.Dockerfile | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/Dockerfile b/Dockerfile index fc97f7d..df773b8 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,4 +1,4 @@ -FROM ruby:3.3.6-alpine as builder +FROM ruby:3.4.1-alpine as builder WORKDIR /usr/src/app @@ -13,7 +13,7 @@ RUN bundle config set --without 'development test' \ && bundle install --jobs=3 --retry=3 # Production -FROM ruby:3.3.6-alpine as production +FROM ruby:3.4.1-alpine as production ENV TINI_SUBREAPER=true diff --git a/dev.Dockerfile b/dev.Dockerfile index 78766c4..0385240 100644 --- a/dev.Dockerfile +++ b/dev.Dockerfile @@ -1,4 +1,4 @@ -FROM ruby:3.3.6-alpine +FROM ruby:3.4.1-alpine WORKDIR /usr/src/app