Files
owa-mcp/dockerfile
T
2026-07-06 10:46:11 +03:00

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"]