From 1ab16b1fb4c0bf68c9662fdb9efad0eab32ad960 Mon Sep 17 00:00:00 2001 From: Daoud Clarke Date: Mon, 2 Jan 2023 12:18:03 +0000 Subject: [PATCH] Install postgres client --- Dockerfile | 2 ++ 1 file changed, 2 insertions(+) diff --git a/Dockerfile b/Dockerfile index 6d9b660..e129046 100644 --- a/Dockerfile +++ b/Dockerfile @@ -34,6 +34,8 @@ RUN /venv/bin/pip install pip wheel --upgrade && \ FROM base as final +RUN apt update && apt install postgresql-client + # Copy only the required /venv directory from the builder image that contains mwmbl and its dependencies COPY --from=builder /venv /venv