thuralinhtut commited on
Commit
2cbd325
1 Parent(s): 83235be
Files changed (1) hide show
  1. Dockerfile +4 -0
Dockerfile CHANGED
@@ -15,6 +15,10 @@ RUN apt-get update && apt-get install -y ffmpeg libsm6 libxext6 libxrender-dev l
15
  # Copy the requirements file to the working directory
16
  COPY requirements.txt .
17
 
 
 
 
 
18
  # Install project dependencies
19
  RUN pip install --no-cache-dir -r requirements.txt
20
 
 
15
  # Copy the requirements file to the working directory
16
  COPY requirements.txt .
17
 
18
+ # Upgrade Numba and pymatting
19
+ RUN pip install --no-cache-dir --upgrade numba pymatting
20
+
21
+
22
  # Install project dependencies
23
  RUN pip install --no-cache-dir -r requirements.txt
24