Hugging Face
Models
Datasets
Spaces
Posts
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
VinitT
/
ResearchRadar.AI
like
2
Sleeping
App
Files
Files
Community
Fetching metadata from the HF Docker repository...
c22cdfd
ResearchRadar.AI
/
Dockerfile
VinitT
add huggingface space
4d5c005
2 months ago
raw
Copy download link
history
blame
Safe
203 Bytes
FROM
python:
3.9
-slim
WORKDIR
/code
COPY
./requirements.txt /code/requirements.txt
COPY
. /code
RUN
pip install --no-cache-dir --upgrade -r /code/requirements.txt
EXPOSE
7860
CMD
[
"python"
,
"app.py"
]