From 9175898bf35512e5c37b730e4f0dcc61d8c7708c Mon Sep 17 00:00:00 2001 From: Ryan Hamilton Date: Fri, 25 Jul 2025 08:58:25 -0500 Subject: [PATCH] fix: update pip and setuptools installation in Dockerfile --- Dockerfile | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 43ed46f..66dd309 100644 --- a/Dockerfile +++ b/Dockerfile @@ -10,8 +10,9 @@ RUN git clone https://gitea.purpleraft.com/external-repos/ivatar.git . RUN virtualenv -p python3 .virtualenv && \ source .virtualenv/bin/activate && \ + pip install --upgrade pip setuptools wheel && \ pip install 2to3 pillow && \ - pip install -r requirements.txt + pip install --no-build-isolation -r requirements.txt RUN apk del build-deps && pip cache purge