File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -7,16 +7,14 @@ BUILD_IMAGE := $(COMPONENT)-build
77
88build : check-docker
99 docker build -t $(BUILD_IMAGE ) image
10- @$(eval CID := $(shell docker run -d $(BUILD_IMAGE ) ) )
11- docker cp $(CID ) :/go/bin/extract-domain bin/
12- docker cp $(CID ) :/go/bin/extract-types bin/
13- docker cp $(CID ) :/go/bin/extract-version bin/
14- docker cp $(CID ) :/go/bin/get-app-config bin/
15- docker cp $(CID ) :/go/bin/get-app-values bin/
16- docker cp $(CID ) :/go/bin/publish-release-controller bin/
17- docker cp $(CID ) :/go/bin/yaml2json-procfile bin/
10+ docker cp ` docker create $( BUILD_IMAGE) ` :/go/bin/extract-domain bin/
11+ docker cp ` docker create $( BUILD_IMAGE) ` :/go/bin/extract-types bin/
12+ docker cp ` docker create $( BUILD_IMAGE) ` :/go/bin/extract-version bin/
13+ docker cp ` docker create $( BUILD_IMAGE) ` :/go/bin/get-app-config bin/
14+ docker cp ` docker create $( BUILD_IMAGE) ` :/go/bin/get-app-values bin/
15+ docker cp ` docker create $( BUILD_IMAGE) ` :/go/bin/publish-release-controller bin/
16+ docker cp ` docker create $( BUILD_IMAGE) ` :/go/bin/yaml2json-procfile bin/
1817 docker build -t $(IMAGE ) .
19- -docker kill $(CID )
2018 rm bin/extract-domain
2119 rm bin/extract-types
2220 rm bin/extract-version
You can’t perform that action at this time.
0 commit comments