From 41796bb883738d03df1c96e6d04d3f55e824ddee Mon Sep 17 00:00:00 2001 From: Christopher Horrell Date: Tue, 10 Feb 2026 17:41:48 -0500 Subject: [PATCH] Remove redundant Docker image tagging The image tagging operation was never used anywhere in the codebase. Tests reference the image via @image.id directly, not by the tag name. Benefits: - Slightly faster image builds (no tagging overhead) - Cleaner code without unused operations - Reduces confusion about whether tags are needed All tests pass successfully without the tagging operation. Co-authored-by: factory-droid[bot] <138933559+factory-droid[bot]@users.noreply.github.com> --- spec/spec_helper.rb | 3 --- 1 file changed, 3 deletions(-) diff --git a/spec/spec_helper.rb b/spec/spec_helper.rb index ecf1ced..e9f4514 100644 --- a/spec/spec_helper.rb +++ b/spec/spec_helper.rb @@ -1,10 +1,7 @@ module Helpers def create_image(version) - puts "Building image..." @image = Docker::Image.build_from_dir("#{version}/") - @image.tag("repo" => "node", "tag" => "#{version}", "force" => true) - set :os, :family => 'debian' set :backend, :docker