Skip to content

Commit 250e6d7

Browse files
Merge pull request #17285 from csrwng/delete_failed_build_containers_37
Automatic merge from submit-queue. Force removal of temporary build containers [3.7] Currently temporary Docker build containers will only be removed from the node if the build succeeds. This change will force build containers to be removed whether the build fails or succeeds. Fixes BZ https://bugzilla.redhat.com/show_bug.cgi?id=1512679
2 parents 32f3429 + d9752c1 commit 250e6d7

File tree

1 file changed

+8
-7
lines changed

1 file changed

+8
-7
lines changed

pkg/build/builder/docker.go

+8-7
Original file line numberDiff line numberDiff line change
@@ -298,13 +298,14 @@ func (d *DockerBuilder) dockerBuild(dir string, tag string, secrets []buildapi.S
298298
}
299299

300300
opts := docker.BuildImageOptions{
301-
Name: tag,
302-
RmTmpContainer: true,
303-
OutputStream: os.Stdout,
304-
Dockerfile: dockerfilePath,
305-
NoCache: noCache,
306-
Pull: forcePull,
307-
BuildArgs: buildArgs,
301+
Name: tag,
302+
RmTmpContainer: true,
303+
ForceRmTmpContainer: true,
304+
OutputStream: os.Stdout,
305+
Dockerfile: dockerfilePath,
306+
NoCache: noCache,
307+
Pull: forcePull,
308+
BuildArgs: buildArgs,
308309
}
309310
network, resolvConfHostPath, err := getContainerNetworkConfig()
310311
if err != nil {

0 commit comments

Comments
 (0)