diff --git a/Makefile b/Makefile new file mode 100644 index 0000000..43d3515 --- /dev/null +++ b/Makefile @@ -0,0 +1,6 @@ +IMG ?= desmo999r/formolcli:latest +docker-build: + podman build --disable-compression --format=docker . -t ${IMG} + +docker-push: + podman push ${IMG}