From 8826629b44564b3ec3ca57c71563e01f74dd7c78 Mon Sep 17 00:00:00 2001 From: Ahmed Abdelhalim Date: Mon, 4 May 2026 00:03:39 +0200 Subject: Add proxmox testing and update testing vars --- molecule/default/Dockerfile.proxmox.j2 | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) create mode 100644 molecule/default/Dockerfile.proxmox.j2 (limited to 'molecule/default/Dockerfile.proxmox.j2') diff --git a/molecule/default/Dockerfile.proxmox.j2 b/molecule/default/Dockerfile.proxmox.j2 new file mode 100644 index 0000000..a8cebae --- /dev/null +++ b/molecule/default/Dockerfile.proxmox.j2 @@ -0,0 +1,21 @@ +# Based on the amazing work of geerlingguy <3 +# FROM docker.io/geerlingguy/docker-debian12-ansible +FROM docker.io/library/debian:bookworm + +ARG DEBIAN_FRONTEND=noninteractive + +ENV container docker + +RUN apt-get update \ + && apt-get install -y --no-install-recommends \ + systemd python3 parted dosfstools \ + && rm -Rf /var/lib/apt/lists/* \ + && rm -Rf /usr/share/doc \ + && rm -Rf /usr/share/man \ + && apt-get clean + +RUN rm -f /lib/systemd/system/multi-user.target.wants/getty.target + +VOLUME ["/sys/fs/cgroup", "/tmp", "/run", "/opt"] + +CMD ["/lib/systemd/systemd"] -- cgit v1.2.3