Files
blackroad-os-docs/railway.json
Alexa Louise ec0d392755 fix(railway): use Dockerfile builder instead of NIXPACKS
Switch from NIXPACKS to DOCKERFILE builder for consistent deployments.
The Dockerfile handles the Next.js build properly.

🤖 Generated with [Claude Code](https://claude.com/claude-code)

Co-Authored-By: Claude <noreply@anthropic.com>
2025-11-30 15:25:09 -06:00

17 lines
342 B
JSON

{
"$schema": "https://railway.com/railway.schema.json",
"build": {
"builder": "DOCKERFILE",
"dockerfilePath": "Dockerfile"
},
"deploy": {
"healthcheckPath": "/api/health",
"healthcheckTimeout": 100,
"restartPolicyType": "ON_FAILURE",
"restartPolicyMaxRetries": 3
},
"variables": {
"PORT": "8080"
}
}