Use mk. prefix for Makefile time stamps and make git ignore them

This commit is contained in:
Michael Hohn
2024-09-13 09:44:08 -07:00
committed by =Michael Hohn
parent 8dd6c94918
commit a35fc619e6
7 changed files with 37 additions and 27 deletions

View File

@@ -1,8 +1,8 @@
DBT_TARGET := client-qldbtools-container:0.1.24
# Build the qldbtools container image
dbt: client-qldbtools-container
client-qldbtools-container:
dbt: mk.client-qldbtools-container
mk.client-qldbtools-container:
docker build -t ${DBT_TARGET} .
touch $@
@@ -14,7 +14,8 @@ dbt-run: dbt
dbt-check: dbt
docker run --rm -it ${DBT_TARGET} mc-db-initial-info
dbt-push: dbt
dbt-push: mk.dbt-push
mk.dbt-push: dbt
docker tag ${DBT_TARGET} ghcr.io/hohn/${DBT_TARGET}
docker push ghcr.io/hohn/${DBT_TARGET}
touch $@