mirror of
https://github.com/Quiq/docker-registry-ui.git
synced 2026-08-08 23:54:31 +00:00
11 lines
274 B
Makefile
Executable File
11 lines
274 B
Makefile
Executable File
IMAGE=quiq/docker-registry-ui
|
|
VERSION=`sed -n '/version/ s/.* = //;s/"//g p' version.go`
|
|
|
|
.DEFAULT: buildx
|
|
|
|
buildx:
|
|
@docker build -t ${IMAGE}:${VERSION} .
|
|
|
|
publish:
|
|
@docker buildx build --platform linux/amd64,linux/arm64 -t ${IMAGE}:${VERSION} -t ${IMAGE}:latest --push .
|