From 0353f6b13d0bab985af62a20f94d45e457a3b820 Mon Sep 17 00:00:00 2001 From: "Michael N. Lipp" Date: Mon, 11 Aug 2025 11:38:34 +0200 Subject: [PATCH] Use pre-installed podman. --- Containerfile | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/Containerfile b/Containerfile index 80b08aa..837d8fa 100644 --- a/Containerfile +++ b/Containerfile @@ -1,6 +1,7 @@ -FROM docker.io/fedora:41 +# Podman for ruuning in container pre-installed +FROM quay.io/podman/stable RUN dnf install -y java-21-openjdk-headless nodejs python \ - gcc gcc-c++ git podman graphviz ruby + gcc gcc-c++ git graphviz ruby CMD ["/bin/bash"]