Fix: use explicit file names instead of $@
This commit is contained in:
committed by
=Michael Hohn
parent
a35fc619e6
commit
727381dc5a
6
Makefile
6
Makefile
@@ -14,7 +14,7 @@ html: README.html
|
|||||||
dbt: mk.client-qldbtools-container
|
dbt: mk.client-qldbtools-container
|
||||||
mk.client-qldbtools-container:
|
mk.client-qldbtools-container:
|
||||||
cd client/containers/qldbtools && \
|
cd client/containers/qldbtools && \
|
||||||
docker build -t $@:0.1.24 .
|
docker build -t client-qldbtools-container:0.1.24 .
|
||||||
touch $@
|
touch $@
|
||||||
|
|
||||||
# Run a shell in the container with the qldbtools
|
# Run a shell in the container with the qldbtools
|
||||||
@@ -34,7 +34,7 @@ mk.dbt-push: mk.client-qldbtools-container
|
|||||||
ghm: mk.client-ghmrva-container
|
ghm: mk.client-ghmrva-container
|
||||||
mk.client-ghmrva-container:
|
mk.client-ghmrva-container:
|
||||||
cd client/containers/ghmrva && \
|
cd client/containers/ghmrva && \
|
||||||
docker build -t $@:0.1.24 .
|
docker build -t client-ghmrva-container:0.1.24 .
|
||||||
touch $@
|
touch $@
|
||||||
|
|
||||||
|
|
||||||
@@ -45,7 +45,7 @@ mk.ghm-push: mk.client-ghmrva-container
|
|||||||
touch $@
|
touch $@
|
||||||
|
|
||||||
ghm-run:
|
ghm-run:
|
||||||
docker run --rm client-ghmrva-container --help
|
docker run --rm -it ghcr.io/hohn/client-ghmrva-container:0.1.24 /bin/bash
|
||||||
|
|
||||||
server:
|
server:
|
||||||
cd cmd/server && GOOS=linux GOARCH=arm64 go build
|
cd cmd/server && GOOS=linux GOARCH=arm64 go build
|
||||||
|
|||||||
Reference in New Issue
Block a user