We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 726e833 commit 6c5320cCopy full SHA for 6c5320c
Makefile
@@ -69,6 +69,15 @@ dynbinary: ## build dynamically linked binary
69
plugins: ## build example CLI plugins
70
scripts/build/plugins
71
72
+.PHONY: trust-plugin
73
+trust-plugin: ## build docker-trust CLI plugins
74
+ scripts/build/trust-plugin
75
+
76
+.PHONY: install-trust-plugin
77
+install-trust-plugin: trust-plugin
78
+install-trust-plugin: ## install docker-trust CLI plugins
79
+ install -D -m 0755 "$$(readlink -f build/docker-trust)" /usr/libexec/docker/cli-plugins/docker-trust
80
81
.PHONY: vendor
82
vendor: ## update vendor with go modules
83
rm -rf vendor
0 commit comments