summaryrefslogtreecommitdiffstats
path: root/molecule/default/Dockerfile.debian.j2
diff options
context:
space:
mode:
authorAhmed Abdelhalim <[email protected]>2025-08-11 00:33:34 +0200
committerAhmed Abdelhalim <[email protected]>2025-08-11 00:33:34 +0200
commit6b20b109fd455ffa71351890a18940e7da326229 (patch)
treebf429579ddb5f22d06286f5d4670965676fc7af7 /molecule/default/Dockerfile.debian.j2
parent4e96a9abb248290a72a5bcf088ba16c1d6e2ab71 (diff)
Make bootstrap raspberry more detailed with minimal setup
Diffstat (limited to 'molecule/default/Dockerfile.debian.j2')
-rw-r--r--molecule/default/Dockerfile.debian.j221
1 files changed, 0 insertions, 21 deletions
diff --git a/molecule/default/Dockerfile.debian.j2 b/molecule/default/Dockerfile.debian.j2
deleted file mode 100644
index c28918e..0000000
--- a/molecule/default/Dockerfile.debian.j2
+++ /dev/null
@@ -1,21 +0,0 @@
-# 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 systemd-sysv 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"]