Skip to content

Commit 15a24ee

Browse files
author
anmol372
authored
Added default Dockerfile path to end of command (#68)
1 parent 4e3124f commit 15a24ee

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@ lint-fix: golangci-lint ## Run golangci-lint linter and perform fixes
5050
$(GOLANGCI_LINT) run --fix
5151
# Build the docker image
5252
docker-build:
53-
docker build . -t quay.io/joelanford/helm-operator:$(VERSION)
53+
docker build -t quay.io/joelanford/helm-operator:$(VERSION) .
5454

5555
# Push the docker image
5656
docker-push:

pkg/plugins/v1/scaffolds/internal/templates/makefile.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -95,7 +95,7 @@ undeploy: kustomize
9595
9696
# Build the docker image
9797
docker-build:
98-
docker build . -t ${IMG}
98+
docker build -t ${IMG} .
9999
100100
# Push the docker image
101101
docker-push:

0 commit comments

Comments
 (0)