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...
main
Radha
/
Dockerfile
Coderadi
fix: Dockerfile capital, remove database
d99c357
6 days ago
raw
Copy download link
history
blame
contribute
delete
Safe
140 Bytes
FROM
python:
3.11
WORKDIR
/app
COPY
requirements.txt .
RUN
pip install -r requirements.txt
COPY
. .
EXPOSE
7860
CMD
[
"python"
,
"run.py"
]