fix(FN-002): address Dockerfile build order, base images, .dockerignore, docs

This commit is contained in:
Fusion
2026-05-14 02:08:53 +02:00
parent 7b45344237
commit a091895998
7 changed files with 36 additions and 14 deletions
+1 -1
View File
@@ -11,5 +11,5 @@ This directory contains architecture, development, and deployment documentation
## Quick Links
- Root README — to be added in Step 6
- Deploy Skeleton — to be added in Step 5
- [Deploy Skeleton](../deploy/README.md)
- [Project Brief](project-brief.md) — Original product brief and confirmed stack *(FN-001)*
+5 -7
View File
@@ -55,11 +55,9 @@ pnpm dev # Runs frontend and backend in parallel
### With Docker Compose
> Docker Compose files will be added in Step 5. Once created, run:
>
> ```bash
> docker compose up --build -d
> ```
```bash
docker compose up --build -d
```
## Testing
@@ -129,8 +127,8 @@ pnpm build
│ ├── web/ # Vite React TypeScript frontend
│ └── api/ # FastAPI Python backend
├── docs/ # Documentation
├── deploy/ # Deployment skeleton files (added in Step 5)
├── docker-compose.yml (added in Step 5)
├── deploy/ # Deployment skeleton files
├── docker-compose.yml
└── package.json # Root monorepo scripts
```