mirror of https://github.com/docker/buildx.git
makefile: add install target
Signed-off-by: Tonis Tiigi <tonistiigi@gmail.com>
This commit is contained in:
parent
57857f09e1
commit
918516694a
8
Makefile
8
Makefile
|
@ -4,10 +4,14 @@ shell:
|
||||||
binaries:
|
binaries:
|
||||||
./hack/binaries
|
./hack/binaries
|
||||||
|
|
||||||
|
install: binaries
|
||||||
|
mkdir -p ~/.docker/cli-plugins
|
||||||
|
cp bin/buildx ~/.docker/cli-plugins/docker-buildx
|
||||||
|
|
||||||
lint:
|
lint:
|
||||||
./hack/lint
|
./hack/lint
|
||||||
|
|
||||||
vendor:
|
vendor:
|
||||||
./hack/update-vendor
|
./hack/update-vendor
|
||||||
|
|
||||||
.PHONY: vendor lint shell binaries
|
.PHONY: vendor lint shell binaries install
|
Loading…
Reference in New Issue