From 9a21d083dc0ec5f9583931f37624714f54a234cc Mon Sep 17 00:00:00 2001 From: Andrew Novoselac Date: Thu, 28 Mar 2024 11:30:02 -0400 Subject: [PATCH] Update the image's devcontainer to not specify a version for the ruby feature We always want to build the image with the latest version of the feature. This saves us from having to remember to update it and potentially building it with an outdated version. --- images/ruby/.devcontainer/devcontainer.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/images/ruby/.devcontainer/devcontainer.json b/images/ruby/.devcontainer/devcontainer.json index 25a20f8..0edde11 100644 --- a/images/ruby/.devcontainer/devcontainer.json +++ b/images/ruby/.devcontainer/devcontainer.json @@ -15,7 +15,7 @@ "version": "latest", "ppa": "false" }, - "ghcr.io/rails/devcontainer/features/ruby:0.2.0": { + "ghcr.io/rails/devcontainer/features/ruby": { "version": "${localEnv:RUBY_VERSION}" } },