luxmorocco commited on
Commit
a9c559b
·
verified ·
1 Parent(s): 87b0038

Update Docker

Browse files
Files changed (1) hide show
  1. Docker +3 -0
Docker CHANGED
@@ -27,6 +27,9 @@ COPY requirements.txt .
27
  # Install any needed packages specified in requirements.txt
28
  RUN pip install --no-cache-dir -r requirements.txt
29
 
 
 
 
30
  # Copy the rest of your application's code
31
  COPY . .
32
 
 
27
  # Install any needed packages specified in requirements.txt
28
  RUN pip install --no-cache-dir -r requirements.txt
29
 
30
+ # Install py-zerox separately to avoid conflicts
31
+ RUN pip install --no-cache-dir git+https://github.com/getomni-ai/zerox.git
32
+
33
  # Copy the rest of your application's code
34
  COPY . .
35