drewThomasson commited on
Commit
4afa437
·
verified ·
1 Parent(s): c7873bf

Update Dockerfile

Browse files
Files changed (1) hide show
  1. 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