- packages/bridge/Dockerfile: multi-stage build (node:22-alpine) - frontend/Dockerfile: multi-stage build + nginx:alpine - frontend/nginx.conf: proxy /bridge to bridge service - docker-compose.yml: bridge (3456) + frontend (8080) - .dockerignore: exclude backend/node_modules/dist - Fix vite proxy target to port 3456 - .env with bridge vars (AUTH_MODE=dev)
32 lines
414 B
Text
32 lines
414 B
Text
.git
|
|
.env
|
|
.env.*
|
|
!.env.example
|
|
.venv
|
|
__pycache__
|
|
.pytest_cache
|
|
.ruff_cache
|
|
.mypy_cache
|
|
*.py[cod]
|
|
|
|
# Node modules (re-installed in Docker)
|
|
**/node_modules
|
|
|
|
# Build outputs (re-built in Docker)
|
|
frontend/dist
|
|
packages/*/dist
|
|
*.tsbuildinfo
|
|
|
|
# Dev/test artifacts
|
|
coverage
|
|
*.log
|
|
.DS_Store
|
|
.idea
|
|
.vscode
|
|
|
|
# Docker-in-Docker
|
|
docker-compose.yml
|
|
**/Dockerfile
|
|
|
|
# Backend (not needed for bridge/frontend containers)
|
|
backend/
|