Changed 'docker' rule to 'container'

This commit is contained in:
David Allen 2024-08-12 16:35:21 -06:00
parent 4aef5166a5
commit e3d0791ec1
No known key found for this signature in database
GPG key ID: 717C593FF60A2ACC

View file

@ -17,7 +17,7 @@ SHELL := /bin/bash
.DEFAULT_GOAL := all
.PHONY: all
all: ## build pipeline
all: mod inst build spell lint test
all: mod inst build lint test
.PHONY: ci
ci: ## CI build pipeline
@ -57,8 +57,8 @@ build: ## goreleaser build
go build --tags=all
.PHONY: docker
docker: ## docker build
docker:
container: ## docker build
container:
$(call print-target)
docker build . --build-arg REGISTRY_HOST=${REGISTRY_HOST} --no-cache --pull --tag '${NAME}:${VERSION}'