fix: add missing axios dependency to runtime dependencies

- The Docker build was failing because axios is used by n8n-api-client.ts
- This dependency was missing from package.runtime.json causing container startup failures
- Fixes the Docker CI/CD pipeline that was stuck at v2.3.0
This commit is contained in:
czlonkowski
2025-08-02 11:15:14 +02:00
parent 8864d6fa5c
commit 1c6bff7d42

View File

@@ -8,7 +8,8 @@
"express": "^5.1.0",
"dotenv": "^16.5.0",
"sql.js": "^1.13.0",
"uuid": "^10.0.0"
"uuid": "^10.0.0",
"axios": "^1.7.7"
},
"engines": {
"node": ">=16.0.0"