From a76404971301be356d2bb150e5e7bb8b640f764d Mon Sep 17 00:00:00 2001 From: Lachlan Kemp Date: Thu, 28 Apr 2022 14:49:04 +0930 Subject: [PATCH] Added PostgreSQL deps --- compose/django/Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/compose/django/Dockerfile b/compose/django/Dockerfile index 669d13b..13707d1 100644 --- a/compose/django/Dockerfile +++ b/compose/django/Dockerfile @@ -18,7 +18,7 @@ FROM ubuntu:18.04 ENV PYTHONUNBUFFERED 1 -RUN apt-get update && apt-get install --yes python3 python3-pip +RUN apt-get update && apt-get install --yes python3 python3-pip libpq-dev RUN pip3 install poetry ENV LC_ALL=C.UTF-8 ENV LANG=C.UTF-8