chore: upgrade pip in Dockerfile

This commit is contained in:
BigDaddyAman 2025-09-18 14:25:21 +08:00
parent b4c8fd572a
commit 6ee948a3a0
1 changed files with 2 additions and 0 deletions

View File

@ -4,6 +4,8 @@ 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