Skip to content
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions packages/agent-os/Dockerfile.sidecar
Original file line number Diff line number Diff line change
Expand Up @@ -6,19 +6,19 @@
# Build: docker build -t agentmesh/governance-sidecar:0.3.0 -f Dockerfile.sidecar .
# Run: docker run -p 8081:8081 agentmesh/governance-sidecar:0.3.0

FROM python:3.14-slim
FROM python:3.11-slim

LABEL maintainer="Microsoft Corporation"
LABEL description="Agent Governance Toolkit — governance sidecar for autonomous AI agents"

WORKDIR /app

# Copy all source (modules/ is needed for full [full] install)
COPY pyproject.toml ./
COPY pyproject.toml README.md ./
COPY src/ ./src/
COPY modules/ ./modules/

RUN pip install --no-cache-dir -e ".[full]" && \
RUN pip install --no-cache-dir -e ".[cmvk,iatp,amb,observability]" pyyaml && \
rm -rf /root/.cache

# Create non-root user
Expand Down
Loading