0
0
mirror of https://github.com/alex289/CleanArchitecture.git synced 2025-06-30 02:31:08 +00:00

fix: Update mssql test container image

This commit is contained in:
alex289 2024-10-02 20:13:08 +02:00
parent 205a510601
commit 0f52653d39
No known key found for this signature in database
GPG Key ID: 573F77CD2D87F863

View File

@ -13,6 +13,8 @@ internal class GlobalSetupFixture
private static Respawner? s_respawner;
public static MsSqlContainer DatabaseContainer { get; } = new MsSqlBuilder()
// Required for https://github.com/docker/for-mac/issues/7368
.WithImage("mcr.microsoft.com/mssql/server:2022-CU14-ubuntu-22.04")
.WithPortBinding(MsSqlBuilder.MsSqlPort, assignRandomHostPort: true)
.Build();