fix: add missing build tools to mcp docker image

This commit is contained in:
Boris Arzentar 2025-04-24 09:40:34 +02:00
parent b9a7c533c8
commit e57736371a

View file

@ -19,7 +19,11 @@ ENV DEBUG=${DEBUG}
# Install system dependencies
RUN apt-get update && apt-get install -y \
gcc \
libpq-dev
libpq-dev \
git \
curl \
build-essential \
&& rm -rf /var/lib/apt/lists/*
# Copy pyproject.toml and lockfile first for better caching
COPY ./cognee-mcp/pyproject.toml ./cognee-mcp/uv.lock ./cognee-mcp/entrypoint.sh ./