Hugging Face
Models
Datasets
Spaces
Posts
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
Jay-Rajput
/
testing
like
0
Sleeping
App
Files
Files
Community
Fetching metadata from the HF Docker repository...
main
testing
/
Dockerfile
jarajpu
testing app
ffed1a8
10 months ago
raw
Copy download link
history
blame
contribute
delete
Safe
152 Bytes
FROM
python:
3.9
WORKDIR
/app
COPY
requirements.txt requirements.txt
RUN
pip install -r requirements.txt
COPY
. .
CMD
[
"streamlit"
,
"run"
,
"app.py"
]