From 93b6b6c092268a820bec8bd8d98b2f00478d608a Mon Sep 17 00:00:00 2001 From: Corban-Lee Jones Date: Mon, 12 Aug 2024 00:36:29 +0100 Subject: [PATCH] postgres dependencies --- Dockerfile | 3 +++ 1 file changed, 3 insertions(+) diff --git a/Dockerfile b/Dockerfile index 6633700..786b90d 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,5 +1,8 @@ FROM python:3.11.4-slim-buster +# Install PostgreSQL development libraries +RUN apt-get update && apt-get install -y libpq-dev gcc + # python related environment variables ENV PYTHONDONTWRITEBYTECODE 1 ENV PYTHONUNBUFFERED 1