Spaces:
Running
Running
Create Dockerfile
Browse files- 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"]
|