From e5e22e02e07d10f2ce49fa322740f6b7c7acb19b Mon Sep 17 00:00:00 2001 From: Dariusz Kuc <9501705+dariuszkuc@users.noreply.github.com> Date: Tue, 23 Jan 2024 15:22:28 -0600 Subject: [PATCH] fix: pin ruby to 3.2 (#591) There is an issue with Ruby 3.3 that prevents subgraph from starting. We'll fix it later. --- implementations/ruby/Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/implementations/ruby/Dockerfile b/implementations/ruby/Dockerfile index 51ab22fab..2f75d3cc0 100644 --- a/implementations/ruby/Dockerfile +++ b/implementations/ruby/Dockerfile @@ -1,4 +1,4 @@ -FROM ruby:latest +FROM ruby:3.2 WORKDIR /web COPY ./Gemfile* /web/ RUN bundle