We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 81fac1c commit a83cc5dCopy full SHA for a83cc5d
Server~/Dockerfile
@@ -47,12 +47,12 @@ RUN chown -R nodejs:nodejs /app
47
# Switch to non-root user
48
USER nodejs
49
50
-# Expose WebSocket port
51
-EXPOSE 8090
+# Expose WebSocket and HTTP ports
+EXPOSE 8090 3000
52
53
# Health check to ensure the application is running
54
HEALTHCHECK --interval=30s --timeout=5s --start-period=5s --retries=3 \
55
- CMD wget --no-verbose --tries=1 --spider http://localhost:8090/health || exit 1
+ CMD wget --no-verbose --tries=1 --spider http://localhost:3000/health || exit 1
56
57
# Command to run the MCP server
58
ENTRYPOINT ["node", "build/index.js"]
0 commit comments