Spaces:
Build error
Build error
Update Docker
Browse files
Docker
CHANGED
@@ -10,6 +10,7 @@ RUN apt-get update && apt-get install -y \
|
|
10 |
tesseract-ocr \
|
11 |
ffmpeg \
|
12 |
curl \
|
|
|
13 |
&& rm -rf /var/lib/apt/lists/*
|
14 |
|
15 |
# Install Node.js
|
@@ -26,6 +27,9 @@ COPY requirements.txt .
|
|
26 |
# Install any needed packages specified in requirements.txt
|
27 |
RUN pip install --no-cache-dir -r requirements.txt
|
28 |
|
|
|
|
|
|
|
29 |
# Copy the rest of your application's code
|
30 |
COPY . .
|
31 |
|
|
|
10 |
tesseract-ocr \
|
11 |
ffmpeg \
|
12 |
curl \
|
13 |
+
git \
|
14 |
&& rm -rf /var/lib/apt/lists/*
|
15 |
|
16 |
# Install Node.js
|
|
|
27 |
# Install any needed packages specified in requirements.txt
|
28 |
RUN pip install --no-cache-dir -r requirements.txt
|
29 |
|
30 |
+
# Install py-zerox from GitHub
|
31 |
+
RUN pip install git+https://github.com/getomni-ai/zerox.git
|
32 |
+
|
33 |
# Copy the rest of your application's code
|
34 |
COPY . .
|
35 |
|