Files
ansible_role_proxy/molecule/default/Dockerfile
Luciano Giacchetta cdbd05e85c
All checks were successful
Update Traefik Version / update-version (push) Successful in 4s
fix: Dockerimage FROM buildargs (#5)
Reviewed-on: #5
2026-03-11 16:00:31 +00: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"]