Fix unit test

This commit is contained in:
Reinier Criel 2025-11-13 12:48:04 -08:00
parent a0e24b1722
commit 4ee18973de
2 changed files with 4 additions and 1 deletions

View file

@ -33,7 +33,7 @@ export class DockerTestContainer {
].join(" ");
execSync(
`docker build --no-cache -t ${imageName} -f ${dockerFile} ${contextPath} ${buildArgs}`,
`docker build -t ${imageName} -f ${dockerFile} ${contextPath} ${buildArgs}`,
{
stdio: "ignore",
}