Spaces:
Runtime error
Runtime error
Update Dockerfile
Browse files- Dockerfile +2 -2
Dockerfile
CHANGED
@@ -3,10 +3,10 @@ RUN pip install opencv-python
|
|
3 |
RUN apt-get update && apt-get install -y tesseract-ocr
|
4 |
|
5 |
# Set the working directory in the container
|
6 |
-
WORKDIR /
|
7 |
|
8 |
# Copy your application files into the container
|
9 |
-
COPY requirements.txt /
|
10 |
|
11 |
# Install Python dependencies
|
12 |
RUN pip install -r requirements.txt
|
|
|
3 |
RUN apt-get update && apt-get install -y tesseract-ocr
|
4 |
|
5 |
# Set the working directory in the container
|
6 |
+
WORKDIR /code
|
7 |
|
8 |
# Copy your application files into the container
|
9 |
+
COPY requirements.txt /code/requirements.txt
|
10 |
|
11 |
# Install Python dependencies
|
12 |
RUN pip install -r requirements.txt
|