initial commit

This commit is contained in:
Tom
2026-02-12 10:48:46 +01:00
commit 72f355be4c
2 changed files with 33 additions and 0 deletions

5
Dockerfile Normal file
View File

@@ -0,0 +1,5 @@
FROM debian:13
RUN apt-get update && apt-get install -y git npm nodejs ansible sudo gitleaks && apt-get clean && rm -rf /var/lib/apt/lists/*
WORKDIR /workspace

28
README.org Normal file
View File

@@ -0,0 +1,28 @@
#+TITLE: Docker Image for the Ghost CI
#+AUTHOR: DeadSwitch | The Silent Architect
#+OPTIONS: toc:nil num:nil \n:t
* Requirements
- Docker CE
- 600mb free space
* Container Image
The image installs:
1. npm
2. nodejs
3. ansible
4. sudo
5. gitleaks
The image removes:
- /var/lib/apt/lists/*
* Build the image
#+begin_src shell
docker build -t debian13-ansible:latest .
#+end_src