What changed, and why it matters
This commit simply deletes two unused Docker build files for the command-line tool. It is a routine cleanup change with no security relevance.
No security action needed. Treat as normal repository maintenance.
Security signals we found
No strong security signals were identified.
Evidence from the diff
The commit removes Dockerfile.cli and its .dockerignore. The commit message states the CLI can now be run via docker compose, making the standalone Dockerfile redundant. The deleted Dockerfile only installed Python dependencies and set an entrypoint; no code logic, permissions, secrets, or network behavior changed.
Changed components
Dockerfile.cliDockerfile.cli.dockerignoreInspect captured patch +0 / −13
diff --git a/Dockerfile.cli b/Dockerfile.cli
deleted file mode 100644
index 4b02044..0000000
--- a/Dockerfile.cli
+++ /dev/null
@@ -1,12 +0,0 @@
-FROM python:3.11-slim
-
-WORKDIR /app
-
-COPY requirements.txt .
-RUN pip install -r requirements.txt
-RUN pip install click
-
-COPY . .
-RUN pip install .
-
-ENTRYPOINT [ "python", "jade_cli.py" ]
diff --git a/Dockerfile.cli.dockerignore b/Dockerfile.cli.dockerignore
deleted file mode 100644
index 3253b19..0000000
--- a/Dockerfile.cli.dockerignore
+++ /dev/null
@@ -1 +0,0 @@
-Dockerfile*
Why this scored 15/100
Community notes
Notes can correct, qualify, or add evidence to the AI analysis. Every note shown here has been validated by a human moderator.
The AI analysis stands alone for now. Submit a note if you can add evidence or important context.