Skip to content

Commit

Permalink
Merge pull request #3165 from sozercan/fix-addon-resizer-makefile
Browse files Browse the repository at this point in the history
Remove docker -it flag from addon-resizer Makefile
  • Loading branch information
k8s-ci-robot authored Jun 1, 2020
2 parents 9cc78d5 + 44271f2 commit 0845415
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions addon-resizer/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ container: .container-$(ARCH)
cp -r * $(TEMP_DIR)
cd $(TEMP_DIR) && sed -i 's|BASEIMAGE|$(BASEIMAGE)|g' Dockerfile

docker run --rm -it -v $(TEMP_DIR):$(TEMP_DIR):Z -v `pwd`:/go/src/k8s.io/autoscaler/addon-resizer/:Z \
docker run --rm -v $(TEMP_DIR):$(TEMP_DIR):Z -v `pwd`:/go/src/k8s.io/autoscaler/addon-resizer/:Z \
golang:${GOLANG_VERSION} \
/bin/bash -c "\
go get github.com/tools/godep && \
Expand All @@ -63,7 +63,7 @@ ifeq ($(ARCH), amd64)
endif

test:
docker run --rm -it -v `pwd`:/go/src/k8s.io/autoscaler/addon-resizer/:Z \
docker run --rm -v `pwd`:/go/src/k8s.io/autoscaler/addon-resizer/:Z \
golang:${GOLANG_VERSION} \
/bin/bash -c "\
go get github.com/tools/godep && \
Expand Down

0 comments on commit 0845415

Please sign in to comment.