Files
ansible_role_mail/molecule/default/Dockerfile
Luciano Giacchetta d61a4ddcef
All checks were successful
Molecule Tests / molecule-tests (pull_request) Successful in 7m18s
fix: Dovecot in Debian Trixie => 2.4 has add / deprecated configurations
2026-03-11 12:40:37 -03:00

15 lines
322 B
Docker

ARG MOLECULE_DISTRO=docker.io/library/debian:stable
FROM ${MOLECULE_DISTRO}
RUN apt-get update && \
apt-get install -y --no-install-recommends \
python3 \
systemd \
systemd-sysv \
dbus \
ca-certificates && \
apt-get clean && \
rm -rf /var/lib/apt/lists/*
CMD ["/usr/sbin/init"]