Fix setuptools install (#508)

This commit is contained in:
Sterling Dreyer 2025-07-22 17:38:40 -07:00 committed by GitHub
parent a4468d4426
commit 903340bb0c
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -19,7 +19,7 @@ RUN apt-get update && apt-get upgrade -y && apt-get install -y \
&& apt-get clean \
&& rm -rf /var/lib/apt/lists/*
RUN pip install setuptools>=78.1.1
RUN pip install --upgrade setuptools>=78.1.1
WORKDIR /app