From 16cec6c21b627d6b09d1b78de6263756f28ba1da Mon Sep 17 00:00:00 2001 From: Jon Date: Tue, 5 Dec 2023 13:38:57 +0930 Subject: [PATCH] fix(build_cache): add pycopg missing build dep !132 --- dockerfile-build_cache | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/dockerfile-build_cache b/dockerfile-build_cache index 9f947e4..e35d9a6 100644 --- a/dockerfile-build_cache +++ b/dockerfile-build_cache @@ -15,7 +15,8 @@ RUN apt update \ && apt install --reinstall -yq \ git \ curl \ - rustc cargo || true + rustc cargo \ + libpq-dev || true RUN mkdir -p /tmp/python_modules /tmp/python_builds