Spaces:
Running
Running
Update Dockerfile
Browse files- Dockerfile +3 -0
Dockerfile
CHANGED
@@ -24,6 +24,9 @@ RUN wget https://bootstrap.pypa.io/get-pip.py && \
|
|
24 |
rm get-pip.py && \
|
25 |
pip install --no-cache-dir --upgrade pip setuptools wheel
|
26 |
|
|
|
|
|
|
|
27 |
# Explicitly install regex
|
28 |
RUN pip install --no-cache-dir regex --force-reinstall
|
29 |
|
|
|
24 |
rm get-pip.py && \
|
25 |
pip install --no-cache-dir --upgrade pip setuptools wheel
|
26 |
|
27 |
+
# Ensure latest Pillow is installed
|
28 |
+
RUN pip install --no-cache-dir --upgrade Pillow
|
29 |
+
|
30 |
# Explicitly install regex
|
31 |
RUN pip install --no-cache-dir regex --force-reinstall
|
32 |
|