# syntax=docker/dockerfile:1
# Minimal image for Glama introspection: starts the MCP server over stdio.
# The tools/list introspection handshake needs no live Docker/Portainer credentials.
FROM python:3.12-slim

RUN pip install --no-cache-dir container-host-aiops

# MCP server speaks JSON-RPC over stdio.
ENTRYPOINT ["container-host-aiops-mcp"]
