Hugging Face
Models
Datasets
Spaces
Posts
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
Zienab
/
ocr-2
like
0
Running
App
Files
Files
Community
main
ocr-2
/
Dockerfile
Zienab
Create Dockerfile
7f64d91
verified
8 days ago
raw
Copy download link
history
blame
contribute
delete
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"
]