Files
docker-python/Dockerfile
T

19 lines
356 B
Docker
Raw Normal View History

FROM python:3.11.6-slim
2020-06-16 14:05:12 -04:00
WORKDIR /app
# pulled out:
2023-11-16 13:00:09 +01:00
# python3-dev
# postgresql-client
RUN set -xe \
2023-11-16 13:00:09 +01:00
&& pip install pipenv==2023.10.3 poetry==1.6.1 \
&& apt-get update -q \
&& apt-get install -y -q \
gcc \
libssl-dev \
curl \
git-core \
gunicorn3 \
&& rm -rf /var/lib/apt/lists/* \
/var/cache/apt/archives