feat: add debian11 image for molecule

This commit is contained in:
Adrien Waksberg 2021-08-15 12:29:07 +02:00
parent 3a2ced0118
commit 220c07b744

19
molecule/debian11 Normal file
View file

@ -0,0 +1,19 @@
FROM debian:bullseye
MAINTAINER Adrien Waksberg "docker@yae.im"
RUN apt update && \
apt dist-upgrade -y && \
apt install -y dbus systemd curl vim sudo apt-utils lsb-release && \
apt-get clean autoclean
RUN systemctl mask -- \
sys-fs-fuse-connections.mount \
dev-hugepages.mount \
systemd-tmpfiles-setup.service \
cgmanager.service
RUN apt -y install procps python3-minimal && \
apt-get clean autoclean
VOLUME ["/sys/fs/cgroup", "/run", "/run/lock"]
CMD ["/lib/systemd/systemd"]