smishr-18 commited on
Commit
5b1937b
·
1 Parent(s): 036b79b

Update Dockerfile

Browse files
Files changed (1) hide show
  1. 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 /app
7
 
8
  # Copy your application files into the container
9
- COPY requirements.txt /app/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