qemu-user-static from Fedora packaged as a container image
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

10 lines
296 B

FROM quay.io/fedora/fedora:42
ADD https://raw.githubusercontent.com/nmasse-itix/qemu-user-static/refs/heads/main/container-entrypoint /container-entrypoint
RUN dnf install -y qemu-user-static \
&& dnf clean all \
&& chmod +x /container-entrypoint
ENTRYPOINT ["/container-entrypoint"]
CMD []