From 6d6fabc162a12eb6587720a45acb634684ff7da4 Mon Sep 17 00:00:00 2001 From: Anze Date: Thu, 21 Jan 2021 20:49:40 +0100 Subject: [PATCH] Add libpq5 (psycopg2 on armv7) --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index e6be576..98e6f08 100644 --- a/Dockerfile +++ b/Dockerfile @@ -32,7 +32,7 @@ LABEL org.label-schema.vendor="Grafolean" \ COPY --from=python-requirements /requirements.txt /requirements.txt RUN \ apt-get update && \ - apt-get install --no-install-recommends -q -y git build-essential libpq-dev python3-dev libffi-dev && \ + apt-get install --no-install-recommends -q -y git libpq5 build-essential libpq-dev python3-dev libffi-dev && \ pip install --no-cache-dir -r /requirements.txt && \ apt-get purge -y git build-essential libpq-dev python3-dev libffi-dev && \ apt-get clean autoclean && \