Files
docker-python/Dockerfile
T
burnettk b402c50f35
Create and publish a Docker image / build-and-push-image (push) Has been cancelled
upgrade python minor, pin pipenv and poetry, pull out python3-dev and postgres client
2023-10-13 23:01:33 -04:00

19 lines
311 B
Docker

FROM python:3.11.6-slim
WORKDIR /app
# pulled out:
# python3-dev \
# postgresql-client \
RUN set -xe \
&& 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
WORKDIR /app