Spaces:
Runtime error
Runtime error
Update Dockerfile
Browse files- Dockerfile +2 -2
Dockerfile
CHANGED
@@ -6,10 +6,10 @@ RUN apt-get update && apt-get install -y tesseract-ocr
|
|
6 |
WORKDIR /app
|
7 |
|
8 |
# Copy your application files into the container
|
9 |
-
COPY . /app
|
10 |
|
11 |
# Install Python dependencies
|
12 |
-
RUN pip install
|
13 |
|
14 |
# Set the Tesseract path for pytesseract
|
15 |
ENV TESSDATA_PREFIX /usr/share/
|
|
|
6 |
WORKDIR /app
|
7 |
|
8 |
# Copy your application files into the container
|
9 |
+
COPY COPY requirements.txt /app/requirements.txt
|
10 |
|
11 |
# Install Python dependencies
|
12 |
+
RUN pip install -r requirements.txt
|
13 |
|
14 |
# Set the Tesseract path for pytesseract
|
15 |
ENV TESSDATA_PREFIX /usr/share/
|