FROM python:3.11-slim

LABEL org.opencontainers.image.title="ckg-agentforce" \
      org.opencontainers.image.description="Salesforce AgentForce Compact Knowledge Graph MCP server — billing, permissions, agent config" \
      org.opencontainers.image.url="https://graphifymd.com" \
      org.opencontainers.image.source="https://github.com/Yarmoluk/ckg-agentforce" \
      org.opencontainers.image.licenses="MIT"

ARG VERSION=latest

LABEL org.opencontainers.image.version="$VERSION"

RUN pip install --no-cache-dir ckg-agentforce==$VERSION

CMD ["ckg-agentforce"]
