Browse Source

use url to have a portable containerfile

main
Nicolas Massé 6 months ago
parent
commit
93c9a3741d
  1. 7
      Containerfile

7
Containerfile

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

Loading…
Cancel
Save