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