Skip to content

Commit fafc885

Browse files
committed
Move Dockerfile into the project root
This is such a small project there's no need to hide it two directories deep.
1 parent 9478277 commit fafc885

File tree

2 files changed

+1
-2
lines changed

2 files changed

+1
-2
lines changed
File renamed without changes.

Makefile

+1-2
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,6 @@ REGISTRY_IMAGE ?= ${REPO}/${PREFIX}
55
SUFFIX = ${USER}-dev
66

77
TAG ?= ${REGISTRY_IMAGE}:${SUFFIX}
8-
DOCKERFILE=build/package/Dockerfile
98

109
##@ Default Goal
1110
.PHONY: help
@@ -31,7 +30,7 @@ run: ## Run the service using "go run" (KUBECONFIG needs to be set)
3130
go run ./main.go --debug
3231

3332
image: ## Build the Docker image
34-
docker build --build-arg=GITLAB_USER --build-arg=GITLAB_PASSWORD --file=${DOCKERFILE} --tag=${TAG} .
33+
docker build --build-arg=GITLAB_USER --build-arg=GITLAB_PASSWORD --tag=${TAG} .
3534

3635
install: image ## Push the image to the repo
3736
docker push ${TAG}

0 commit comments

Comments
 (0)