# Add labels to enhanced Debian bootc base image FROM localhost/debian-bootc:enhanced-temp AS debian-enhanced-labeled # 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