Merge pull request 'Install Mem0 PostgreSQL runtime library' (#8) from fix/mem0-libpq-runtime into main

Reviewed-on: http://localhost:13000/slh/infra/pulls/8
Reviewed-by: slh <spenguin725@gmail.com>
This commit is contained in:
slh 2026-07-17 17:32:15 +08:00
commit 40eb38441f

View File

@ -14,6 +14,9 @@ RUN git init \
FROM python:3.12-slim-bookworm
ARG MEM0AI_VERSION=2.0.12
RUN apt-get update \
&& apt-get install -y --no-install-recommends libpq5 \
&& rm -rf /var/lib/apt/lists/*
ENV PYTHONDONTWRITEBYTECODE=1 \
PYTHONUNBUFFERED=1
WORKDIR /app