docs: enforce SSH-only policy and add full dashboard handoff context

This commit is contained in:
Naeel
2026-04-16 06:06:42 +03:00
commit 82979e71df
10 changed files with 1485 additions and 0 deletions
+8
View File
@@ -0,0 +1,8 @@
FROM python:3.12-slim
WORKDIR /app
COPY requirements.txt .
RUN pip install --no-cache-dir -r requirements.txt
COPY main.py .
COPY static/ /app/static/
EXPOSE 8080
CMD ["uvicorn", "main:app", "--host", "0.0.0.0", "--port", "8080"]