Hugging Face
Models
Datasets
Spaces
Posts
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
ewfian
/
donut_cn_invoice
like
0
Sleeping
App
Files
Files
Community
ed6e0bc
donut_cn_invoice
/
Dockerfile
ewfian
add docker runtime
1ea5949
about 1 year ago
raw
Copy download link
history
blame
Safe
200 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
. .
EXPOSE
7860
CMD
[
"python"
,
"./app.py"
]