From b55e840050bea69598ee71bfdbb966b17c8ebb7e Mon Sep 17 00:00:00 2001 From: Oliver Date: Thu, 8 Feb 2024 14:38:55 +1100 Subject: [PATCH] (Yet another) Fix for dockerfile (#6452) * Fix for dockerfile - Ensure that core DB packages are kept around - We can purge the dev packages after building python modules * Revert "Fix for dockerfile" This reverts commit 8522ff243e6570e8719ee23ac6936c9fde278b62. * Update requirements.txt - Remove psycopg-c - Not supported unless postgresql-libs are installed as a system package - Prints a warning message in logs - Works without it --- docker/requirements.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docker/requirements.txt b/docker/requirements.txt index f34e24b114..cbfe5c853e 100644 --- a/docker/requirements.txt +++ b/docker/requirements.txt @@ -7,7 +7,7 @@ setuptools>=69.0.0 wheel>=0.41.0 # Database links -psycopg[binary, c, pool] +psycopg[binary, pool] mysqlclient>=2.2.0 mariadb>=1.1.8