init commit
This commit is contained in:
15
ctrl/Dockerfile.api
Normal file
15
ctrl/Dockerfile.api
Normal file
@@ -0,0 +1,15 @@
|
||||
FROM python:3.13-slim
|
||||
|
||||
WORKDIR /app
|
||||
|
||||
RUN pip install uv
|
||||
|
||||
COPY pyproject.toml ./
|
||||
RUN uv sync --no-dev --no-install-project
|
||||
|
||||
COPY mcp_servers/ mcp_servers/
|
||||
COPY agents/ agents/
|
||||
COPY api/ api/
|
||||
COPY irrop/ irrop/
|
||||
|
||||
CMD ["uv", "run", "uvicorn", "api.main:app", "--host", "0.0.0.0", "--port", "8000", "--reload"]
|
||||
Reference in New Issue
Block a user