refac docker startup & helm

This commit is contained in:
Taylor Wilsdon
2025-08-19 16:35:06 -04:00
parent 8702415c96
commit 0cb4e569ea
3 changed files with 30 additions and 13 deletions

View File

@@ -34,5 +34,6 @@ HEALTHCHECK --interval=30s --timeout=10s --start-period=30s --retries=3 \
ENV TOOL_TIER=""
ENV TOOLS=""
# Use shell form to expand environment variables
CMD uv run main.py --transport streamable-http ${TOOL_TIER:+--tool-tier "$TOOL_TIER"} ${TOOLS:+--tools $TOOLS}
# Use entrypoint for the base command and CMD for args
ENTRYPOINT ["/bin/sh", "-c"]
CMD ["uv run main.py --transport streamable-http ${TOOL_TIER:+--tool-tier \"$TOOL_TIER\"} ${TOOLS:+--tools $TOOLS}"]