Hugging Face
Models
Datasets
Spaces
Posts
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
Duplicated from
Zienab/ocr-2
Zienab
/
ocr-3
like
0
Runtime error
App
Files
Files
Community
Fetching metadata from the HF Docker repository...
d35a7b6
ocr-3
/
Dockerfile
Zienab
Create Dockerfile
7f64d91
verified
5 months ago
raw
Copy download link
history
blame
Safe
182 Bytes
FROM
python:
3.10
WORKDIR
/code
COPY
./requirements.txt /code/requirements.txt
RUN
pip install --no-cache-dir --upgrade -r /code/requirements.txt
COPY
. /code
CMD
[
"python"
,
"app.py"
]