Hugging Face
Models
Datasets
Spaces
Community
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
kerols77
/
ID-OCR
like
0
Sleeping
App
Files
Files
Community
Fetching metadata from the HF Docker repository...
main
ID-OCR
/
Dockerfile
kerols77
Upload 4 files
7076829
verified
3 months ago
raw
Copy download link
history
blame
contribute
delete
Safe
172 Bytes
FROM
python:
3.9
-slim
WORKDIR
/app
COPY
requirements.txt .
RUN
pip install --no-cache-dir -r requirements.txt
COPY
. .
EXPOSE
7860
CMD
[
"python"
,
"app.py"
]