From d85c880d23eb6cfe0cb9fcb34d43a12e7cd89625 Mon Sep 17 00:00:00 2001 From: adampweb Date: Fri, 9 May 2025 18:32:47 +0200 Subject: [PATCH] Vulnerablity fix: Updates Ruby version to address vulnerability Updates the Ruby version in the Dockerfile to the latest stable release in the 3.x series to address identified vulnerabilities. Details: https://hub.docker.com/layers/library/ruby/3.1.6-alpine/images/sha256-7ff1261ca74033c38e86b04e30a6078567ec17e59d465d96250665897fb52180 --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index f59e11b..167dd11 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,4 +1,4 @@ -FROM ruby:3.1.6-alpine +FROM ruby:3.4.3-alpine USER root WORKDIR /build COPY . /build