Hugging Face
Models
Datasets
Spaces
Buckets
new
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
Streamixph05
/
Rstream
like
0
Sleeping
App
Files
Files
Community
Fetching metadata from the HF Docker repository...
73ec8a2
Rstream
/
Dockerfile
Streamixph05
Upload 7 files
8964916
verified
3 months ago
raw
Copy download link
history
blame
Safe
145 Bytes
FROM
python:
3.10
-slim
WORKDIR
/app
COPY
requirements.txt .
RUN
pip install --no-cache-dir -r requirements.txt
COPY
. .
CMD
[
"python3"
,
"app.py"
]