Hugging Face
Models
Datasets
Spaces
Buckets
new
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
anu151105
/
RAM
like
1
Runtime error
App
Files
Files
Community
Fetching metadata from the HF Docker repository...
main
RAM
/
Dockerfile
anu151105
Upload 6 files
a3738dd
verified
about 1 year ago
raw
Copy download link
history
blame
contribute
delete
Safe
150 Bytes
FROM
python:
3.9
WORKDIR
/app
COPY
requirements.txt .
RUN
pip install --no-cache-dir -r requirements.txt
COPY
. .
CMD
[
"python"
,
"app.py"
]