added just recipes

This commit is contained in:
Daniel Fichtinger 2025-07-13 23:14:39 -04:00
parent 4dd46a6e44
commit 8f8c1f7be6

11
justfile Normal file
View file

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