Skip to content
This repository has been archived by the owner on Nov 16, 2023. It is now read-only.

Commit

Permalink
upgrade python minor, pin pipenv and poetry, pull out python3-dev and…
Browse files Browse the repository at this point in the history
… postgres client
  • Loading branch information
burnettk committed Oct 14, 2023
1 parent 6751903 commit b402c50
Showing 1 changed file with 6 additions and 4 deletions.
10 changes: 6 additions & 4 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -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

Expand Down

0 comments on commit b402c50

Please sign in to comment.