github.com/docker/import-restrictions@v0.0.0-20200820154456-7e04b6301b4d/Makefile (about)

     1  export DOCKER_BUILDKIT=1
     2  
     3  all: build
     4  
     5  build:
     6  	docker build . --target build \
     7  	--platform local \
     8  	--output ./bin
     9  
    10  e2e:
    11  	docker build . --target e2e
    12  
    13  .PHONY: build e2e