first commit

This commit is contained in:
robojerk 2025-08-18 23:45:01 -07:00
commit 1751544440
28 changed files with 6994 additions and 0 deletions

View file

@ -0,0 +1,25 @@
# Debian Bootc Minimal Container
# Built with deb-bootc-compose and apt-ostree
FROM scratch
# Copy the root filesystem
COPY ../minimal-amd64-root.tar.gz /tmp/rootfs.tar.gz
# Extract the root filesystem
RUN tar -xzf /tmp/rootfs.tar.gz -C / && rm /tmp/rootfs.tar.gz
# Set the entrypoint to systemd
ENTRYPOINT ["/lib/systemd/systemd"]
# Default command
CMD ["--system"]
# Labels for bootc compatibility
LABEL org.opencontainers.image.title="Debian Bootc Minimal"
LABEL org.opencontainers.image.description="Minimal Debian bootc image"
LABEL org.opencontainers.image.version="12.5"
LABEL org.opencontainers.image.vendor="Debian"
LABEL org.opencontainers.image.source="https://github.com/debian/deb-bootc-compose"
LABEL io.openshift.release.operator="debian-bootc"
LABEL io.openshift.release.operator.debian-bootc="true"