From 37ace76959de8ec538eef8e13d50c830326ff956 Mon Sep 17 00:00:00 2001 From: Max Goltzsche Date: Fri, 25 Dec 2020 23:12:47 +0100 Subject: [PATCH] Disable podman-based build since it doesn't work --- Makefile | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/Makefile b/Makefile index 1b88ed0..789d6a8 100644 --- a/Makefile +++ b/Makefile @@ -1,7 +1,7 @@ PODMAN_IMAGE_NAME ?= mgoltzsche/podman PODMAN_IMAGE ?= $(PODMAN_IMAGE_NAME):latest PODMAN_IMAGE_TARGET ?= podmanall -PODMAN_MINIMAL_IMAGE ?= $(PODMAN_IMAGE)-rootless +PODMAN_MINIMAL_IMAGE ?= $(PODMAN_IMAGE)-minimal PODMAN_REMOTE_IMAGE ?= $(PODMAN_IMAGE)-remote PODMAN_SSH_IMAGE ?= mgoltzsche/podman-ssh @@ -10,7 +10,9 @@ GPG_IMAGE=gpg-signer ASSET_NAME=podman-linux-amd64 BUILD_DIR=build/$(ASSET_NAME) -DOCKER ?= $(if $(shell podman -v),podman,docker) +# TODO: Make the build work with podman as well (GitHub's workflow runner also supports podman) +#DOCKER ?= $(if $(shell podman -v),podman,docker) +DOCKER=docker images: podman podman-remote podman-minimal