- CLAUDE.md project passport - Agent system prompts (architect, developer, reviewer, tester, deployer) - Gitea Actions CI pipeline (lint, test, build) - Docker configuration (Dockerfile, docker-compose.yml) - Canonical directory structure per BRD - Makefile with dev/test/lint/build/deploy targets - Architecture docs skeleton Refs: multi-agent F0-3, F0-5, F0-6, F0-8
9 lines
255 B
Docker
9 lines
255 B
Docker
FROM python:3.12-slim
|
|
WORKDIR /app
|
|
COPY src/api/requirements.txt .
|
|
RUN pip install --no-cache-dir -r requirements.txt
|
|
COPY src/api/ ./src/api/
|
|
COPY src/web/ ./src/web/
|
|
EXPOSE 5556
|
|
CMD ["uvicorn", "src.api.main:app", "--host", "0.0.0.0", "--port", "5556"]
|