mirror of
https://gitee.com/wanwujie/deer-flow
synced 2026-04-26 07:14:47 +08:00
Add psycopg dependencies instruction for checkpointing (#564)
* Add psycopg dependencies instruction for checkpointing * fix: update Dockerfile to improve dependency installation process
This commit is contained in:
@@ -3,6 +3,11 @@ FROM ghcr.io/astral-sh/uv:python3.12-bookworm
|
||||
# Install uv.
|
||||
COPY --from=ghcr.io/astral-sh/uv:latest /uv /bin/uv
|
||||
|
||||
# Install system dependencies including libpq
|
||||
RUN apt-get update && apt-get install -y \
|
||||
libpq-dev \
|
||||
&& rm -rf /var/lib/apt/lists/*
|
||||
|
||||
WORKDIR /app
|
||||
|
||||
# Pre-cache the application dependencies.
|
||||
|
||||
Reference in New Issue
Block a user