Fix idention in docker-build 2

This commit is contained in:
Kwitsch 2022-10-22 00:31:52 +02:00
parent c1da8c0c82
commit 3eb3e6abc9
1 changed files with 6 additions and 6 deletions

View File

@ -71,12 +71,12 @@ fmt: ## gofmt and goimports all go files
docker-build: ## Build docker image
go generate ./...
docker buildx build \
--build-arg VERSION=${VERSION} \
--build-arg BUILD_TIME=${BUILD_TIME} \
--network=host \
-o type=docker \
-t ${DOCKER_IMAGE_NAME} \
.
--build-arg VERSION=${VERSION} \
--build-arg BUILD_TIME=${BUILD_TIME} \
--network=host \
-o type=docker \
-t ${DOCKER_IMAGE_NAME} \
.
help: ## Shows help
@grep -E '^[a-zA-Z_-]+:.*?## .*$$' $(MAKEFILE_LIST) | sort | awk 'BEGIN {FS = ":.*?## "}; {printf "\033[36m%-30s\033[0m %s\n", $$1, $$2}'