Simple makefile to build the container because I always forget the podman special options

This commit is contained in:
Jean-Marc ANDRE 2020-12-13 20:41:57 +01:00
parent 93860e0172
commit 72250c1144

6
Makefile Normal file
View File

@ -0,0 +1,6 @@
IMG ?= desmo999r/formolcli:latest
docker-build:
podman build --disable-compression --format=docker . -t ${IMG}
docker-push:
podman push ${IMG}