From b402c50f3588cce6bd69f6e247244488ec1c0994 Mon Sep 17 00:00:00 2001 From: burnettk Date: Fri, 13 Oct 2023 23:01:33 -0400 Subject: [PATCH] upgrade python minor, pin pipenv and poetry, pull out python3-dev and postgres client --- Dockerfile | 10 ++++++---- 1 file changed, 6 insertions(+), 4 deletions(-) diff --git a/Dockerfile b/Dockerfile index d38b753..296a5b0 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,15 +1,17 @@ -FROM python:3.11-slim +FROM python:3.11.6-slim WORKDIR /app + +# pulled out: +# python3-dev \ +# postgresql-client \ RUN set -xe \ - && pip install pipenv poetry==1.2.2 \ + && pip install pipenv==2023.10.3 poetry==1.6.1 \ && apt-get update -q \ && apt-get install -y -q \ gcc \ - python3-dev \ libssl-dev \ curl \ - postgresql-client \ git-core \ gunicorn3