From 5f9e31dd06ca3a2ece452b65f736e5b763aa71e2 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Wed, 13 Mar 2024 09:12:08 +0000 Subject: [PATCH] Bump ruby from 3.1.2-alpine to 3.3.0-alpine Bumps ruby from 3.1.2-alpine to 3.3.0-alpine. --- updated-dependencies: - dependency-name: ruby dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] --- Dockerfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Dockerfile b/Dockerfile index 67119f6..a8ae971 100644 --- a/Dockerfile +++ b/Dockerfile @@ -3,7 +3,7 @@ # production: runs the actual app # Build builder image -FROM ruby:3.1.2-alpine as builder +FROM ruby:3.3.0-alpine as builder RUN apk -U upgrade && \ apk add --update --no-cache gcc git libc6-compat libc-dev make nodejs \ @@ -56,7 +56,7 @@ RUN rm -rf node_modules log/* tmp/* /tmp && \ find /usr/local/bundle/gems -name "*.html" -delete # Build runtime image -FROM ruby:3.1.2-alpine as production +FROM ruby:3.3.0-alpine as production # The application runs from /app WORKDIR /app