Files
ansible_role_proxy/molecule/default/Dockerfile

14 lines
283 B
Docker
Raw Normal View History

FROM docker.io/library/debian:stable
RUN apt-get update && \
apt-get install -y --no-install-recommends \
python3 \
systemd \
systemd-sysv \
dbus \
ca-certificates && \
apt-get clean && \
2026-03-11 10:05:27 -03:00
rm -rf /var/lib/apt/lists/*
CMD ["/usr/sbin/init"]