# Generated by https://smithery.ai. See: https://smithery.ai/docs/config#dockerfile
FROM python:3.12-slim
WORKDIR /app
# Copy the current directory into the container
COPY . .
# Install build dependencies
RUN pip install --upgrade pip
# Build and install the MCP server using hatchling
RUN pip install --no-cache-dir .
# Expose a port if needed (not required for stdio, but might be useful for logging)
# Command to run the MCP server
ENTRYPOINT ["mcp-server-office"]