diff --git a/dockerfile b/dockerfile new file mode 100644 index 0000000..91f50e0 --- /dev/null +++ b/dockerfile @@ -0,0 +1,6 @@ +FROM python:3.12-slim +WORKDIR /app +COPY pyproject.toml ./ +RUN pip install --no-cache-dir -e ".[http]" +COPY . . +CMD ["owa-mcp"] diff --git a/pyproject.toml b/pyproject.toml index a69a537..9d75f84 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,5 +1,5 @@ [project] -name = "owa-mcp-server" +name = "owa-mcp" version = "0.1.0" description = "MCP server for OWA — email, calendar, directory, availability" readme = "README.md" @@ -23,7 +23,7 @@ Repository = "https://git.kosyrev.name/zoo/owa-mcp" http = ["uvicorn>=0.30.0"] [project.scripts] -owa-mcp-server = "owa_mcp.server:main" +owa-mcp = "owa_mcp.server:main" [build-system] requires = ["setuptools>=68.0"]