From f1b281331de3f8f81f8196a02c5c36a472279d26 Mon Sep 17 00:00:00 2001 From: Thomas Burkhalter Date: Wed, 21 Feb 2024 16:44:16 +0100 Subject: [PATCH] Update ruby version during build --- Dockerfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Dockerfile b/Dockerfile index 3542cce..fa9f170 100644 --- a/Dockerfile +++ b/Dockerfile @@ -2,7 +2,7 @@ # Build Stage # ################################################################## -FROM ruby:3.0.2 AS build +FROM ruby:3.0.6 AS build # Set build shell SHELL ["/bin/bash", "-c"] @@ -71,7 +71,7 @@ RUN rm -rf vendor/cache/ .git ################################################################## # This image will be replaced by Openshift -FROM ruby:3.0.2-slim AS app +FROM ruby:3.0.6-slim AS app # Set runtime shell SHELL ["/bin/bash", "-c"]