We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 9478277 commit fafc885Copy full SHA for fafc885
build/package/Dockerfile renamed to Dockerfile
Makefile
@@ -5,7 +5,6 @@ REGISTRY_IMAGE ?= ${REPO}/${PREFIX}
5
SUFFIX = ${USER}-dev
6
7
TAG ?= ${REGISTRY_IMAGE}:${SUFFIX}
8
-DOCKERFILE=build/package/Dockerfile
9
10
##@ Default Goal
11
.PHONY: help
@@ -31,7 +30,7 @@ run: ## Run the service using "go run" (KUBECONFIG needs to be set)
31
30
go run ./main.go --debug
32
33
image: ## Build the Docker image
34
- docker build --build-arg=GITLAB_USER --build-arg=GITLAB_PASSWORD --file=${DOCKERFILE} --tag=${TAG} .
+ docker build --build-arg=GITLAB_USER --build-arg=GITLAB_PASSWORD --tag=${TAG} .
35
36
install: image ## Push the image to the repo
37
docker push ${TAG}
0 commit comments