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