feat: added molecule tests
Some checks failed
Molecule Tests / molecule-tests (pull_request) Failing after 1m52s

This commit is contained in:
2026-03-11 11:44:59 -03:00
parent c853c75f04
commit 1300e7acc6
7 changed files with 168 additions and 0 deletions

View File

@@ -0,0 +1,13 @@
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"]