Add roadmap API and mock dashboard

This commit is contained in:
2025-11-13 15:05:34 -05:00
parent e21301cffb
commit 4455640afa
29 changed files with 3717 additions and 1 deletions

30
Dockerfile.kali Normal file
View File

@@ -0,0 +1,30 @@
FROM kalilinux/kali-rolling
ENV DEBIAN_FRONTEND=noninteractive
RUN apt-get update && \
apt-get install -y --no-install-recommends \
python3 \
python3-pip \
python3-venv \
git \
nmap \
masscan \
sqlmap \
hydra \
metasploit-framework \
hashcat \
john \
rainbowcrack \
curl \
ca-certificates && \
apt-get clean && rm -rf /var/lib/apt/lists/*
WORKDIR /opt/goosestrike
COPY requirements.txt requirements.txt
RUN pip3 install --no-cache-dir -r requirements.txt
COPY . /opt/goosestrike
EXPOSE 8000
CMD ["uvicorn", "api:app", "--host", "0.0.0.0", "--port", "8000"]