mirror of
https://github.com/wiremock/WireMock.Net.git
synced 2026-03-28 20:32:13 +01:00
Fix WireMockContainerBuilder (duplicate entries) (#1222)
This commit is contained in:
@@ -7,8 +7,14 @@ using System.Threading.Tasks;
|
||||
|
||||
namespace WireMock.Net.Testcontainers.Utils;
|
||||
|
||||
internal static class ContainerUtils
|
||||
/// <summary>
|
||||
/// Some utility methods for containers.
|
||||
/// </summary>
|
||||
public static class TestcontainersUtils
|
||||
{
|
||||
/// <summary>
|
||||
/// Get the OS platform of the Docker image.
|
||||
/// </summary>
|
||||
public static Lazy<Task<OSPlatform>> GetImageOSAsync = new(async () =>
|
||||
{
|
||||
if (TestcontainersSettings.OS.DockerEndpointAuthConfig == null)
|
||||
Reference in New Issue
Block a user