Hugging Face
Models
Datasets
Spaces
Buckets
new
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
nx210
/
editv2
like
0
Sleeping
App
Files
Files
Community
Fetching metadata from the HF Docker repository...
main
editv2
/
Dockerfile
nx210
Create Dockerfile
b23e7ac
verified
9 days ago
raw
Copy download link
history
blame
contribute
delete
Safe
182 Bytes
FROM
python:
3.9
WORKDIR
/code
COPY
./requirements.txt /code/requirements.txt
RUN
pip install --no-cache-dir --upgrade -r /code/requirements.txt
COPY
. .
CMD
[
"python"
,
"app.py"
]