Spaces:
Build error
Build error
Update Docker
Browse files
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 |
|