Files
docker-registry-ui/Makefile

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