mirror of
https://github.com/Quiq/docker-registry-ui.git
synced 2026-08-08 23:54:31 +00:00
11 lines
223 B
Makefile
Executable File
11 lines
223 B
Makefile
Executable File
IMAGE=quiq/docker-registry-ui
|
|
VERSION=`sed -n '/version/ s/.* = //;s/"//g p' version.go`
|
|
|
|
.DEFAULT: build
|
|
|
|
build:
|
|
@docker build -t ${IMAGE}:${VERSION} .
|
|
@echo
|
|
@echo "The image has been built: ${IMAGE}:${VERSION}"
|
|
@echo
|