From a383aee6c0165de4bb04ee1d577e5d7233e146a3 Mon Sep 17 00:00:00 2001 From: Klaas van Schelven Date: Mon, 17 Mar 2025 15:56:36 +0100 Subject: [PATCH] Dockerfile: pip install "psycopg[binary]" needed for testing with the postgres DB backend See #21, #61 --- Dockerfile | 2 ++ 1 file changed, 2 insertions(+) diff --git a/Dockerfile b/Dockerfile index 91c6ef2..b8c9cf1 100644 --- a/Dockerfile +++ b/Dockerfile @@ -27,6 +27,8 @@ RUN apt update && apt install default-libmysqlclient-dev -y COPY --from=build /wheels /wheels RUN --mount=type=cache,target=/var/cache/buildkit/pip \ pip install --find-links /wheels --no-index /wheels/$WHEEL_FILE mysqlclient +RUN --mount=type=cache,target=/var/cache/buildkit/pip \ + pip install "psycopg[binary]" COPY bugsink/conf_templates/docker.py.template bugsink_conf.py