Guest User

Untitled

a guest
Jun 11th, 2018
66
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.25 KB | None | 0 0
  1. build-docker-linux: OS_TYPE = linux
  2. build-docker-linux: build-docker
  3.  
  4. build-docker:
  5. @if [ -z "$(IMAGE)" ];then\
  6. docker build -t $(DOCKER_IMAGE) --build-arg targetos=$(OS_TYPE) .;\
  7. else\
  8. docker build -t $(IMAGE) --build-arg targetos=$(OS_TYPE) .;\
  9. fi
Add Comment
Please, Sign In to add comment