Files
ansible_role_proxy/molecule/default/Dockerfile
Luciano Giacchetta 022bb0ab28
Some checks failed
Update Traefik Version / update-version (pull_request) Failing after 53s
fix: change image to official debian:stable
2026-03-11 09:30:43 -03:00

14 lines
283 B
Docker

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 && \
rm -rf /var/lib/apt/lists/*
CMD ["/usr/sbin/init"]