forked from FuzzingLabs/mcp-security-hub
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathDockerfile
More file actions
29 lines (21 loc) · 857 Bytes
/
Copy pathDockerfile
File metadata and controls
29 lines (21 loc) · 857 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
# BloodHound MCP Server
# Wrapper for MorDavid/BloodHound-MCP-AI
# Based on: https://github.com/MorDavid/BloodHound-MCP-AI
FROM python:3.12-alpine
LABEL org.opencontainers.image.source="https://github.com/FuzzingLabs/offensive-security-mcps"
LABEL org.opencontainers.image.description="BloodHound MCP Server - Active Directory attack path analysis"
LABEL org.opencontainers.image.licenses="MIT"
RUN apk add --no-cache \
tini \
git \
&& rm -rf /var/cache/apk/*
WORKDIR /app
# Clone BloodHound-MCP-AI
RUN git clone --depth 1 https://github.com/MorDavid/BloodHound-MCP-AI.git /tmp/bloodhound-mcp && \
cp -r /tmp/bloodhound-mcp/* /app/ && \
rm -rf /tmp/bloodhound-mcp
# Install dependencies
RUN pip install --no-cache-dir -r requirements.txt
ENV PYTHONUNBUFFERED=1
ENTRYPOINT ["/sbin/tini", "--"]
CMD ["python", "BloodHound-MCP.py"]