Using buildah because I cannot make podman work anymore

This commit is contained in:
jandre 2021-05-08 23:30:11 +02:00
parent 771942cb94
commit bafffdb3d2

View File

@ -15,10 +15,10 @@ vet:
go vet ./...
docker-build:
podman build --disable-compression --format=docker -t ${IMG} .
buildah bud --disable-compression --format=docker -t ${IMG} .
docker-push:
podman push ${IMG}
buildah push ${IMG}
docker: formolcli docker-build docker-push