From d5685bc2137213f3ed3fd83e85cdd8e2b93e7830 Mon Sep 17 00:00:00 2001 From: StuartFerguson Date: Tue, 7 Jul 2026 12:02:11 +0100 Subject: [PATCH] Update Estate UI and Reporting images to use 'master' tag Changed Docker image tags for EstateManagementUI and EstateReporting containers from 'latest' to 'master' to ensure consistent use of master-tagged images. --- Shared.IntegrationTesting/TestContainers/BaseDockerHelper.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Shared.IntegrationTesting/TestContainers/BaseDockerHelper.cs b/Shared.IntegrationTesting/TestContainers/BaseDockerHelper.cs index 83453ac..98bcb36 100644 --- a/Shared.IntegrationTesting/TestContainers/BaseDockerHelper.cs +++ b/Shared.IntegrationTesting/TestContainers/BaseDockerHelper.cs @@ -151,8 +151,8 @@ protected BaseDockerHelper(Boolean skipHealthChecks=false) { this.ImageDetails.Add(ContainerType.FileProcessor, ("stuartferguson/fileprocessor:master", true)); this.ImageDetails.Add(ContainerType.TransactionProcessorAcl, ("stuartferguson/transactionprocessoracl:master", true)); this.ImageDetails.Add(ContainerType.ConfigurationHost, ("stuartferguson/mobileconfiguration:master", true)); - this.ImageDetails.Add(ContainerType.EstateManagementUI, ("stuartferguson/estatemanagementui:latest", true)); - this.ImageDetails.Add(ContainerType.EstateReporting, ("stuartferguson/estatereportingapi:latest", true)); + this.ImageDetails.Add(ContainerType.EstateManagementUI, ("stuartferguson/estatemanagementui:master", true)); + this.ImageDetails.Add(ContainerType.EstateReporting, ("stuartferguson/estatereportingapi:master", true)); } this.HostPorts = new Dictionary();