runner-images/fedora-40-minimal/Containerfile

20 lines
530 B
Text
Raw Normal View History

2024-07-14 14:33:29 +08:00
FROM fedora:40
2024-11-28 18:11:07 +08:00
RUN sh /imgbuild/fedora/instpkgs-minimal.sh
# We don't clean up dnf cache since user may want to install packages for their use
2024-07-14 14:33:29 +08:00
ADD containers.conf /etc/containers/
2024-11-28 18:11:07 +08:00
RUN sh /imgbuild/configure-nested-container.sh
2024-07-14 15:32:27 +08:00
2024-07-14 14:33:29 +08:00
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" ]