From 5ddfbece8e73a8419a762b64ce4c193c2e7edbad Mon Sep 17 00:00:00 2001 From: pyr0ball Date: Mon, 18 May 2026 08:28:24 -0700 Subject: [PATCH] chore(deps): add psycopg2-binary for shared Postgres migration --- Dockerfile | 1 + pyproject.toml | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index a665e50..a0735f4 100644 --- a/Dockerfile +++ b/Dockerfile @@ -5,6 +5,7 @@ WORKDIR /app # System deps for Playwright/Chromium RUN apt-get update && apt-get install -y --no-install-recommends \ xvfb \ + libpq-dev \ && rm -rf /var/lib/apt/lists/* # Install circuitforge-core from sibling directory (compose sets context: ..) diff --git a/pyproject.toml b/pyproject.toml index 956a8e0..0e6377f 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -8,7 +8,7 @@ version = "0.3.0" description = "Auction listing monitor and trust scorer" requires-python = ">=3.11" dependencies = [ - "circuitforge-core>=0.8.0", + "circuitforge-core[community]>=0.8.0", "streamlit>=1.32", "requests>=2.31", "imagehash>=4.3",