diff --git a/Dockerfile b/Dockerfile index e7a4e9d..477345b 100644 --- a/Dockerfile +++ b/Dockerfile @@ -3,6 +3,8 @@ FROM python:3.12-slim RUN apt-get update && \ apt-get install -y postgresql-client gcc libpq-dev gzip && \ rm -rf /var/lib/apt/lists/* + +RUN pip install --upgrade pip setuptools wheel COPY requirements.txt /app/requirements.txt RUN pip install --no-cache-dir -r /app/requirements.txt