From bafffdb3d265855711568a1cf9ca21fc7e36f594 Mon Sep 17 00:00:00 2001 From: Jean-Marc Andre Date: Sat, 8 May 2021 23:30:11 +0200 Subject: [PATCH] Using buildah because I cannot make podman work anymore --- Makefile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Makefile b/Makefile index edc0563..d0c8f9a 100644 --- a/Makefile +++ b/Makefile @@ -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