67c794b
dab8981
dfd2213
67c794b
dfd2213 | | FROM python:3.12-slim
RUN apt-get update && \
apt-get install -y gcc g++ libpq-dev python3-dev libffi-dev build-essential
WORKDIR /home/user/app
COPY --chown=user requirements.txt .
RUN pip install --no-cache-dir -r requirements.txt |