@@ -14,11 +14,11 @@ import (
1414
1515func insertBundles (t * testing.T , cmd icmd.Cmd , info dindSwarmAndRegistryInfo ) {
1616 // Push an application so that we can later pull it by digest
17- cmd .Command = dockerCli .Command ("app" , "build" , "--tag" , info .registryAddress + "/c-myapp" , filepath .Join ("testdata" , "push-pull" ))
17+ cmd .Command = dockerCli .Command ("app" , "build" , "--no-resolve-image" , "-- tag" , info .registryAddress + "/c-myapp" , filepath .Join ("testdata" , "push-pull" ))
1818 icmd .RunCmd (cmd ).Assert (t , icmd .Success )
19- cmd .Command = dockerCli .Command ("app" , "build" , "--tag" , "b-simple-app" , filepath .Join ("testdata" , "simple" ))
19+ cmd .Command = dockerCli .Command ("app" , "build" , "--no-resolve-image" , "-- tag" , "b-simple-app" , filepath .Join ("testdata" , "simple" ))
2020 icmd .RunCmd (cmd ).Assert (t , icmd .Success )
21- cmd .Command = dockerCli .Command ("app" , "build" , "--tag" , "a-simple-app" , filepath .Join ("testdata" , "simple" ))
21+ cmd .Command = dockerCli .Command ("app" , "build" , "--no-resolve-image" , "-- tag" , "a-simple-app" , filepath .Join ("testdata" , "simple" ))
2222 icmd .RunCmd (cmd ).Assert (t , icmd .Success )
2323}
2424
0 commit comments