chore: use Ubuntu 22.04 base image for MSSQL

The tests are failing because the container is terminated with error code 127
This commit is contained in:
Manuel de la Peña
2024-09-18 16:21:04 +02:00
parent 1d6c0c3e25
commit 4d7a172400
3 changed files with 3 additions and 3 deletions

View File

@@ -13,7 +13,7 @@ import (
const (
// mssqlImage is the default image used for running MSSQL in tests.
mssqlImage = "mcr.microsoft.com/mssql/server:2022-RTM-GDR1-ubuntu-20.04"
mssqlImage = "mcr.microsoft.com/mssql/server:2022-CU10-ubuntu-22.04"
mssqlImageEnvVar string = "TEST_MSSQL_IMAGE"
mssqlUser string = "sa"
mssqlPass string = "MsSql!1234"