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>
17 lines
342 B
JSON
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"
|
|
}
|
|
}
|