Skip to content

Commit

Permalink
use dev tag in Makefile
Browse files Browse the repository at this point in the history
  • Loading branch information
quangthe committed Nov 16, 2023
1 parent fd2a0b3 commit b4398e7
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,11 @@ include .env
VARS:=$(shell sed -ne 's/ *\#.*$$//; /./ s/=.*$$// p' .env )
$(foreach v,$(VARS),$(eval $(shell echo export $(v)="$($(v))")))
DOCKER_IMAGE ?= pcloud/eks-helm-kubectl
DOCKER_TAG ?= `git rev-parse --abbrev-ref HEAD`

# get git tag
# DOCKER_TAG ?= `git rev-parse --abbrev-ref HEAD`
# or just simply use dev tag
DOCKER_TAG:=dev

docker_build:
@docker buildx build \
Expand Down

0 comments on commit b4398e7

Please sign in to comment.