Sanjayraju30 commited on
Commit
2c80f7c
·
verified ·
1 Parent(s): 82fcabd

Create Dockerfile

Browse files
Files changed (1) hide show
  1. Dockerfile +1 -0
Dockerfile ADDED
@@ -0,0 +1 @@
 
 
1
+ FROM python:3.10-slim RUN apt-get update && apt-get install -y tesseract-ocr libtesseract-dev COPY . /app WORKDIR /app RUN pip install -r requirements.txt CMD ["python", "app.py"]