Files
docker-python/Dockerfile
T
2022-09-14 12:28:48 -04:00

16 lines
320 B
Docker

FROM python:3.10-slim
WORKDIR /app
COPY Pipfile Pipfile.lock /app/
RUN set -xe \
&& pip install pipenv \
&& apt-get update -q \
&& apt-get install -y -q \
gcc python3-dev libssl-dev \
curl postgresql-client git-core \
gunicorn3 postgresql-client \
&& pipenv install --dev
WORKDIR /app