Skip to content

Commit

Permalink
build: Build images with correct tag
Browse files Browse the repository at this point in the history
  • Loading branch information
barp committed Dec 8, 2022
1 parent 07848c2 commit d90ce17
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions Makefile.image.mk
Original file line number Diff line number Diff line change
@@ -1,15 +1,15 @@

.PHONY: node-daemon
node-daemon: generate
KO_DOCKER_REPO=${TARGET_REPO} ko build -B ./cmd/node-daemon/
KO_DOCKER_REPO=${TARGET_REPO} ko build -B ./cmd/node-daemon/ -t ${TAG}

.PHONY: containerdbg-entrypoint
containerdbg-entrypoint: generate
KO_DOCKER_REPO=${TARGET_REPO} ko build -B ./cmd/entrypoint/
KO_DOCKER_REPO=${TARGET_REPO} ko build -B ./cmd/entrypoint/ -t ${TAG}

.PHONY: dnsproxy
dnsproxy: generate
KO_DOCKER_REPO=${TARGET_REPO} ko build -B ./cmd/dnsproxy/
KO_DOCKER_REPO=${TARGET_REPO} ko build -B ./cmd/dnsproxy/ -t ${TAG}

.PHONY: test-binary
test-binary: generate
Expand Down

0 comments on commit d90ce17

Please sign in to comment.