drewThomasson commited on
Commit
16195d6
·
verified ·
1 Parent(s): a3440fe

Update Dockerfile

Browse files
Files changed (1) hide show
  1. Dockerfile +3 -0
Dockerfile CHANGED
@@ -33,6 +33,9 @@ RUN pip install --no-cache-dir --upgrade Pillow
33
  # Explicitly install regex
34
  RUN pip install --no-cache-dir regex --force-reinstall
35
 
 
 
 
36
  # Create and switch to a non-root user
37
  RUN useradd -m -u 1000 user
38
  USER user
 
33
  # Explicitly install regex
34
  RUN pip install --no-cache-dir regex --force-reinstall
35
 
36
+ # Explicitly install matplotlib and its dependencies
37
+ RUN pip install --no-cache-dir matplotlib kiwisolver
38
+
39
  # Create and switch to a non-root user
40
  RUN useradd -m -u 1000 user
41
  USER user