Change default port to 3000

This commit is contained in:
Kacper Kwapisz
2026-03-22 21:55:49 +01:00
parent fc9a2bb8f8
commit 48b3f3816f
3 changed files with 9 additions and 7 deletions
+4 -2
View File
@@ -17,9 +17,11 @@ COPY src/ src/
RUN adduser --disabled-password --no-create-home appuser
USER appuser
EXPOSE 8000
EXPOSE 3000
ENV PORT=3000
HEALTHCHECK --interval=30s --timeout=5s --start-period=10s --retries=3 \
CMD python -c "import httpx; httpx.get('http://localhost:8000/mcp', timeout=5)" || exit 1
CMD python -c "import httpx; httpx.get('http://localhost:3000/mcp', timeout=5)" || exit 1
CMD ["python", "src/server.py"]