debian-bootc-base-images/Containerfile.enhanced
2025-08-30 12:36:18 -07:00

20 lines
929 B
Text

# Enhanced Debian bootc base image with real packages
FROM scratch AS debian-enhanced
# Copy the enhanced rootfs with real Debian packages
COPY enhanced-rootfs /
# Copy bootc configuration
COPY debian-bootc-config.json /etc/debian-bootc-config.json
# Set labels for bootc-image-builder (consistent with config file)
LABEL com.debian.bootc=true
LABEL ostree.bootable=true
LABEL containers.bootc=1
LABEL bootc.diskimage-builder=quay.io/centos-bootc/bootc-image-builder
LABEL debian.id=debian
LABEL debian.version-id=trixie
LABEL org.opencontainers.image.title="Debian Enhanced Bootc Base Image"
LABEL org.opencontainers.image.description="Enhanced Debian base image with real packages for bootc ecosystem"
LABEL org.opencontainers.image.vendor="Debian Project"
LABEL org.opencontainers.image.source="https://github.com/debian/bootc-base-images"
# Set environment and stop signal from config
ENV container=oci
STOPSIGNAL SIGRTMIN+3