7 lines
127 B
Docker
7 lines
127 B
Docker
FROM python:3.12-slim
|
|
WORKDIR /app
|
|
COPY pyproject.toml ./
|
|
RUN pip install --no-cache-dir -e ".[http]"
|
|
COPY . .
|
|
CMD ["owa-mcp"]
|