summaryrefslogtreecommitdiffstats
path: root/molecule/default/Dockerfile.proxmox.j2
diff options
context:
space:
mode:
authorAhmed Abdelhalim <[email protected]>2026-05-04 00:03:39 +0200
committerAhmed Abdelhalim <[email protected]>2026-05-04 00:03:39 +0200
commit8826629b44564b3ec3ca57c71563e01f74dd7c78 (patch)
treed8b5aeff172b81d95952ca4e12e4b1b9bf335605 /molecule/default/Dockerfile.proxmox.j2
parent2de4321b014e8f95b7d7450f78048ffaa7a1a703 (diff)
Add proxmox testing and update testing vars
Diffstat (limited to 'molecule/default/Dockerfile.proxmox.j2')
-rw-r--r--molecule/default/Dockerfile.proxmox.j221
1 files changed, 21 insertions, 0 deletions
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"]