add fedora 41
Some checks failed
/ build (push) Failing after 56s

This commit is contained in:
thislight 2024-11-28 19:54:18 +08:00
parent bacbf7d67e
commit 4df05c7457
No known key found for this signature in database
GPG key ID: FCFE5192241CCD4E
8 changed files with 243 additions and 6 deletions

View file

@ -0,0 +1,19 @@
FROM fedora:41
RUN sh /imgbuild/fedora/instpkgs-minimal.sh
# We don't clean up dnf cache since user may want to install packages for their use
ADD containers.conf /etc/containers/
RUN sh /imgbuild/configure-nested-container.sh
VOLUME /var/lib/containers
VOLUME /home/action/.local/share/containers
# Set up environment variables to note that this is
# not starting with usernamespace and default to
# isolate the filesystem with chroot.
ENV _BUILDAH_STARTED_IN_USERNS="" BUILDAH_ISOLATION=chroot
ENTRYPOINT [ "/bin/bash" ]