Spaces:
Build error
Build error
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 |