docker-python/Dockerfile

17 lines
295 B
Docker
Raw Normal View History

2022-11-09 18:07:35 +00:00
FROM python:3.11-slim
2020-06-16 18:05:12 +00:00
WORKDIR /app
RUN set -xe \
2022-11-09 18:07:35 +00:00
&& pip install pipenv poetry==1.2.2 \
&& apt-get update -q \
&& apt-get install -y -q \
2022-11-09 18:07:35 +00:00
gcc \
python3-dev \
libssl-dev \
curl \
postgresql-client \
git-core \
gunicorn3
2020-06-16 18:05:12 +00:00
2020-06-17 01:51:44 +00:00
WORKDIR /app