mx_ai_bot / app.json
Curtis Ide
test of persistence
20b6a4a verified
raw
history blame contribute delete
615 Bytes
Invalid JSON: Expected double-quoted property name in JSONat line 31, column 5
{
"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",
}
}
}