dockerfiles/molecule/debian10

22 lines
556 B
Text
Raw Normal View History

2020-03-27 20:59:09 +00:00
FROM debian:buster
MAINTAINER Adrien Waksberg "docker@yae.im"
ARG ANSIBLE_VERSION=2.8.4
RUN apt update && \
apt dist-upgrade -y && \
2022-04-07 11:54:13 +00:00
apt install -y gettext-base gpg dbus systemd curl vim sudo apt-utils lsb-release && \
2020-03-27 20:59:09 +00:00
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"]