From e25f81623e59b5a20245fd1e5c6e748122555a20 Mon Sep 17 00:00:00 2001 From: Christy Jacob Date: Mon, 21 Feb 2022 00:29:40 +0400 Subject: [PATCH] fix: ruby runtime version --- src/Runtimes/Runtimes.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Runtimes/Runtimes.php b/src/Runtimes/Runtimes.php index 52787912..ad3a791b 100644 --- a/src/Runtimes/Runtimes.php +++ b/src/Runtimes/Runtimes.php @@ -29,7 +29,7 @@ public function __construct() $ruby = new Runtime('ruby', 'Ruby'); $ruby->addVersion('3.0', 'ruby:3.0-alpine', 'openruntimes/ruby:3.0', [System::X86, System::ARM]); - $ruby->addVersion('3.0', 'ruby:3.1-alpine', 'openruntimes/ruby:3.1', [System::X86, System::ARM]); + $ruby->addVersion('3.1', 'ruby:3.1-alpine', 'openruntimes/ruby:3.1', [System::X86, System::ARM]); $this->runtimes['ruby'] = $ruby; $python = new Runtime('python', 'Python');