Skip to content

Commit

Permalink
Merge pull request #1817 from wking/podman-build-compat
Browse files Browse the repository at this point in the history
✨ (go/v3-alpha) *: Replace 'docker build . -t ${IMG}' with '-t ${IMG} .'
  • Loading branch information
k8s-ci-robot committed Nov 16, 2020
2 parents e465dee + ccb1127 commit c4c8200
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion pkg/plugin/v3/scaffolds/internal/templates/makefile.go
Original file line number Diff line number Diff line change
Expand Up @@ -121,7 +121,7 @@ generate: controller-gen
# Build the docker image
docker-build: test
docker build . -t ${IMG}
docker build -t ${IMG} .
# Push the docker image
docker-push:
Expand Down
2 changes: 1 addition & 1 deletion testdata/project-v3-addon/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@ generate: controller-gen

# Build the docker image
docker-build: test
docker build . -t ${IMG}
docker build -t ${IMG} .

# Push the docker image
docker-push:
Expand Down
2 changes: 1 addition & 1 deletion testdata/project-v3-multigroup/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@ generate: controller-gen

# Build the docker image
docker-build: test
docker build . -t ${IMG}
docker build -t ${IMG} .

# Push the docker image
docker-push:
Expand Down
2 changes: 1 addition & 1 deletion testdata/project-v3/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@ generate: controller-gen

# Build the docker image
docker-build: test
docker build . -t ${IMG}
docker build -t ${IMG} .

# Push the docker image
docker-push:
Expand Down

0 comments on commit c4c8200

Please sign in to comment.