From 93c9a3741d5f603979839e2d8cda290052cc4bd9 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Nicolas=20Mass=C3=A9?= Date: Tue, 10 Jun 2025 20:50:34 +0200 Subject: [PATCH] use url to have a portable containerfile --- Containerfile | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/Containerfile b/Containerfile index da63203..0e3a9e4 100644 --- a/Containerfile +++ b/Containerfile @@ -1,9 +1,10 @@ FROM quay.io/fedora/fedora:42 -RUN dnf install -y qemu-user-static \ - && dnf clean all +ADD https://raw.githubusercontent.com/nmasse-itix/qemu-user-static/refs/heads/main/container-entrypoint /container-entrypoint -ADD container-entrypoint / +RUN dnf install -y qemu-user-static \ + && dnf clean all \ + && chmod +x /container-entrypoint ENTRYPOINT ["/container-entrypoint"] CMD []