From 8f8c1f7be60d101e77ec5e98d165a617345bc67f Mon Sep 17 00:00:00 2001 From: Daniel Fichtinger Date: Sun, 13 Jul 2025 23:14:39 -0400 Subject: [PATCH] added just recipes --- justfile | 11 +++++++++++ 1 file changed, 11 insertions(+) create mode 100644 justfile diff --git a/justfile b/justfile new file mode 100644 index 0000000..80fc38f --- /dev/null +++ b/justfile @@ -0,0 +1,11 @@ +name := 'git.ficd.sh/ficd/based-alpine' + +# build the image +build arg="latest": + docker build -t {{name}}:{{arg}} . +# push the image +push arg="latest": + docker push {{name}}:{{arg}} +# run cmd in image +run arg="sh": + docker run --rm -it {{name}} {{arg}}