geekoops-nginx/molecule/default/Dockerfile.bookworm
Felix Niederwanger 94437a3bb2
Add bookworm
Add the CI recipe for Debian bookworm
2023-01-30 15:39:10 +01:00

10 lines
403 B
Docker

FROM docker.io/debian:bullseye
# Install systemd, and development tools, clear cache and clean system
RUN apt-get update && apt-get install -y systemd systemd-sysv python3 curl && rm -rf /var/cache/* && systemctl mask -- dev-hugepages.mount sys-fs-fuse-connections.mount && rm -f /etc/machine-id /var/lib/dbus/machine-id
STOPSIGNAL SIGRTMIN+3
# Start container with systemd
ENTRYPOINT ["/sbin/init"]