We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent d463de4 commit 78d72f3Copy full SHA for 78d72f3
integration/integration_test.go
@@ -572,6 +572,11 @@ func TestBuildFromDockerfileAndConfig(t *testing.T) {
572
require.Contains(t, logs, "Set DOCKER_CONFIG to /.envbuilder/.docker")
573
require.Equal(t, want, got)
574
}
575
+ if tc.configFile.name != "" {
576
+ require.Contains(t, logs, "this file will remain after the build")
577
+ } else {
578
+ require.NotContains(t, logs, "this file will remain after the build")
579
+ }
580
581
582
configJSONContainerPath := workingdir.Default.Join(".docker", "config.json")
0 commit comments