Merge config file if it exists

This commit is contained in:
Reinier Criel 2025-11-13 11:14:45 -08:00
parent fbd11c6d44
commit 61c9f1a1ef
6 changed files with 193 additions and 11 deletions

View file

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