chore: upgrade pip in Dockerfile
This commit is contained in:
parent
b4c8fd572a
commit
6ee948a3a0
|
|
@ -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
|
||||
|
|
|
|||
Loading…
Reference in New Issue