{ "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", } } }