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}}