Hugging Face
Models
Datasets
Spaces
Community
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
Coderadi
/
Radha
like
3
Running
App
Files
Files
Community
5
Fetching metadata from the HF Docker repository...
eecb3a7
Radha
/
dockerfile
Coderadi
NYRA HF deployment
eecb3a7
9 days ago
raw
Copy download link
history
blame
158 Bytes
FROM
python:
3.11
WORKDIR
/app
COPY
requirements.txt .
RUN
pip install -r requirements.txt
COPY
. .
EXPOSE
7860
CMD
[
".venv/Scripts/python.exe"
,
"run.py"
]