Bump base image to Ruby 3.3.0 (#20768)

This commit is contained in:
Mac Siri 2024-03-15 09:16:58 -04:00 committed by GitHub
parent a22172ec20
commit 05d33720db
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
2 changed files with 3 additions and 3 deletions

View file

@ -1 +1 @@
3.2.0
3.3.0

View file

@ -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" ]