From 05d33720db9ef76b4ce65ac7e2891e1fe38366b5 Mon Sep 17 00:00:00 2001 From: Mac Siri Date: Fri, 15 Mar 2024 09:16:58 -0400 Subject: [PATCH] Bump base image to Ruby 3.3.0 (#20768) --- .ruby-version-next | 2 +- Containerfile.base | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.ruby-version-next b/.ruby-version-next index 944880fa1..15a279981 100644 --- a/.ruby-version-next +++ b/.ruby-version-next @@ -1 +1 @@ -3.2.0 +3.3.0 diff --git a/Containerfile.base b/Containerfile.base index 6effbdea7..6001847e2 100644 --- a/Containerfile.base +++ b/Containerfile.base @@ -1,4 +1,4 @@ -ARG RUBY_VERSION=3.2.0 +ARG RUBY_VERSION=3.3.0 ARG DEBIAN_VERSION=bullseye FROM public.ecr.aws/docker/library/ruby:${RUBY_VERSION}-slim-${DEBIAN_VERSION} AS ruby-upstream @@ -24,6 +24,6 @@ RUN apt update && \ && \ apt clean -RUN npm install -g yarn@$YARN_VERSION +RUN corepack enable CMD [ "/usr/local/bin/irb" ]