Files
docker-python/Dockerfile
T

13 lines
266 B
Docker
Raw Normal View History

2022-09-14 12:28:48 -04:00
FROM python:3.10-slim
2020-06-16 14:05:12 -04:00
WORKDIR /app
RUN set -xe \
&& pip install pipenv poetry \
&& 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 14:05:12 -04:00
2020-06-16 21:51:44 -04:00
WORKDIR /app