Initial commit: Talos edge-facing scan orchestrator.
FastAPI + Kali tools UI for authorized scans of levkin.ca / LAN targets. Gitignore local data/.env; add pytest + gitleaks CI.
This commit is contained in:
@@ -0,0 +1,16 @@
|
||||
FROM talos-tools:latest
|
||||
|
||||
RUN apt-get update && apt-get install -y --no-install-recommends \
|
||||
python3-venv \
|
||||
&& rm -rf /var/lib/apt/lists/*
|
||||
|
||||
WORKDIR /app
|
||||
COPY pyproject.toml ./
|
||||
RUN python3 -m venv /venv && /venv/bin/pip install --upgrade pip \
|
||||
&& /venv/bin/pip install -e .
|
||||
|
||||
COPY app ./app
|
||||
ENV PATH="/venv/bin:$PATH"
|
||||
|
||||
EXPOSE 8000
|
||||
CMD ["uvicorn", "app.main:app", "--host", "0.0.0.0", "--port", "8000"]
|
||||
Reference in New Issue
Block a user