upgrade python

This commit is contained in:
burnettk
2022-11-09 13:07:35 -05:00
parent c764a63cf5
commit befdd3676e
+9 -5
View File
@@ -1,12 +1,16 @@
FROM python:3.10-slim
FROM python:3.11-slim
WORKDIR /app
RUN set -xe \
&& pip install pipenv poetry==1.2.1 \
&& pip install pipenv poetry==1.2.2 \
&& apt-get update -q \
&& apt-get install -y -q \
gcc python3-dev libssl-dev \
curl postgresql-client git-core \
gunicorn3 postgresql-client
gcc \
python3-dev \
libssl-dev \
curl \
postgresql-client \
git-core \
gunicorn3
WORKDIR /app