Skip to content

Commit c23464a

Browse files
committed
Merge pull request #2591 from mboersma/fix-router-build-docker131
fix(router/Makefile): use pwd since "docker cp" no longer allows "."
2 parents 0261f04 + 1bb19d8 commit c23464a

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

router/Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ BUILD_IMAGE = $(COMPONENT)-build
77

88
build: check-docker
99
docker build -t $(BUILD_IMAGE) parent
10-
docker cp `docker run -d $(BUILD_IMAGE)`:/nginx.tgz .
10+
docker cp `docker run -d $(BUILD_IMAGE)`:/nginx.tgz `pwd`
1111
docker cp `docker run -d $(BUILD_IMAGE)`:/go/bin/boot bin/
1212
docker build -t $(IMAGE) .
1313
rm nginx.tgz

0 commit comments

Comments
 (0)