Skip to content

Commit 96250a8

Browse files
Pin MSSQL Docker image from 2022-latest -> 2022-CU13-ubuntu-22.04 (#801)
1 parent ee584b4 commit 96250a8

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

packages/modules/mssqlserver/src/mssqlserver-container.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ export class MSSQLServerContainer extends GenericContainer {
99
private acceptEula = "N";
1010
private message: string | RegExp = /.*Recovery is complete.*/;
1111

12-
constructor(image = "mcr.microsoft.com/mssql/server:2022-latest") {
12+
constructor(image = "mcr.microsoft.com/mssql/server:2022-CU13-ubuntu-22.04") {
1313
super(image);
1414
this.withExposedPorts(MSSQL_PORT).withWaitStrategy(Wait.forLogMessage(this.message, 1)).withStartupTimeout(120_000);
1515
}

0 commit comments

Comments
 (0)