diff options
| -rw-r--r-- | justfile | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/justfile b/justfile new file mode 100644 index 0000000..af71fbc --- /dev/null +++ b/justfile @@ -0,0 +1,14 @@ +name := "gigi" + +push tag="latest": + docker buildx build \ + --platform linux/amd64,linux/arm64 \ + -t fuwn/{{ name }}:{{ tag }} \ + --push \ + . + +build: + go build + +run: + go run {{ name }}.go |