FROM python:3.11-slim WORKDIR /app # Copy entire project COPY . . # Move into package directory WORKDIR /app/tool_use_env # Install uv (needed for pyproject-based install) # RUN pip install --no-cache-dir uv # Install project + dependencies RUN pip install --no-cache-dir -e . # Expose port EXPOSE 7860 # Run server CMD ["uvicorn", "tool_use_env.server.app:app", "--host", "0.0.0.0", "--port", "7860", "--ws", "websockets", "--proxy-headers"]