docker-python/Dockerfile

13 lines
273 B
Docker
Raw Normal View History

2022-09-14 16:28:48 +00:00
FROM python:3.10-slim
2020-06-16 18:05:12 +00:00
WORKDIR /app
RUN set -xe \
2022-09-20 16:40:36 +00:00
&& pip install pipenv poetry==1.2.1 \
&& apt-get update -q \
&& apt-get install -y -q \
gcc python3-dev libssl-dev \
curl postgresql-client git-core \
gunicorn3 postgresql-client
2020-06-16 18:05:12 +00:00
2020-06-17 01:51:44 +00:00
WORKDIR /app