smishr-18 commited on
Commit
b960582
1 Parent(s): 0e9fbaa

Update Dockerfile

Browse files
Files changed (1) hide show
  1. 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 --no-cache-dir -r requirements.txt
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/