smishr-18 commited on
Commit
47b3e80
1 Parent(s): 5b1937b

Update Dockerfile

Browse files
Files changed (1) hide show
  1. Dockerfile +3 -3
Dockerfile CHANGED
@@ -1,12 +1,12 @@
1
  FROM python:3.11
2
- 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 /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
 
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