fix: update pip and setuptools installation in Dockerfile
Some checks failed
Build and Push Docker Image / build-and-push (push) Failing after 2m45s

This commit is contained in:
2025-07-25 08:58:25 -05:00
parent d844f74834
commit 9175898bf3

View File

@@ -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