docker-python/Dockerfile

19 lines
311 B
Docker
Raw Normal View History

FROM python:3.11.6-slim
2020-06-16 18:05:12 +00:00
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 \
2022-11-09 18:07:35 +00:00
gcc \
libssl-dev \
curl \
git-core \
gunicorn3
2020-06-16 18:05:12 +00:00
2020-06-17 01:51:44 +00:00
WORKDIR /app