File size: 615 Bytes
30536c9 4312496 20b6a4a 4312496 5dd29f4 4312496 30536c9 4312496 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 | {
"name": "flowise_ai_bot",
"version": "1.0.0",
"dependencies": {
"npm": "1.6.2"
},
"container": {
"name": "maxio-aibot",
"image": "node:18-alpine",
"build": {
"dockerfile": "Dockerfile",
"context": "."
},
"mounts": [
{
"source": "/data",
"destination": "/data",
"type": "volume",
"options": {
"persistent": true
}
}
],
"command": [
"sh",
"-c",
"pwd && npm install && npm run build && ls -al /data/.npm && npm start"
],
"env": {
"NODE_ENV": "production",
}
}
}
|