fix
Browse files- .agent/memory/session.json +2 -2
- Dockerfile +2 -1
.agent/memory/session.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
| 1 |
{
|
| 2 |
"version": "1.0.0",
|
| 3 |
-
"session_id": "
|
| 4 |
-
"started_at": "2026-04-06T20:
|
| 5 |
"workspace": "D:\\Code\\codeverse",
|
| 6 |
"active_task_id": null,
|
| 7 |
"active_agent": null,
|
|
|
|
| 1 |
{
|
| 2 |
"version": "1.0.0",
|
| 3 |
+
"session_id": "854e796e",
|
| 4 |
+
"started_at": "2026-04-06T20:59:12.857829+05:30",
|
| 5 |
"workspace": "D:\\Code\\codeverse",
|
| 6 |
"active_task_id": null,
|
| 7 |
"active_agent": null,
|
Dockerfile
CHANGED
|
@@ -50,5 +50,6 @@ ENV NODE_ENV=production
|
|
| 50 |
# Ensure workspaces are writable in the Space
|
| 51 |
RUN mkdir -p /home/nodejs/app/workspaces && chown -R nodejs:nodejs /home/nodejs/app /app
|
| 52 |
|
|
|
|
| 53 |
USER nodejs
|
| 54 |
-
CMD ["
|
|
|
|
| 50 |
# Ensure workspaces are writable in the Space
|
| 51 |
RUN mkdir -p /home/nodejs/app/workspaces && chown -R nodejs:nodejs /home/nodejs/app /app
|
| 52 |
|
| 53 |
+
# Satisfy system limits for Nix & high-concurrency Node.js (April 2026)
|
| 54 |
USER nodejs
|
| 55 |
+
CMD ["sh", "-c", "ulimit -s 65536 && npm start"]
|