From 8e613dd36884794b13426278209412416d856aca Mon Sep 17 00:00:00 2001 From: Daoud Clarke Date: Sat, 24 Dec 2022 20:13:53 +0000 Subject: [PATCH] Install psql client --- Dockerfile | 3 +++ 1 file changed, 3 insertions(+) diff --git a/Dockerfile b/Dockerfile index 7377746..83309f8 100644 --- a/Dockerfile +++ b/Dockerfile @@ -13,6 +13,9 @@ ENV PIP_DEFAULT_TIMEOUT=100 \ PIP_NO_CACHE_DIR=1 \ POETRY_VERSION=1.1.12 + +RUN apt update && apt install -y postgresql-client + # Create a /venv directory & environment. # This directory will be copied into the final stage of docker build. RUN python -m venv /venv