Hugging Face
Models
Datasets
Spaces
Community
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
GRC2025
/
GRC
like
1
Runtime error
App
Files
Files
Community
Fetching metadata from the HF Docker repository...
cdd5243
GRC
/
Dockerfile
AbdulazizAlhelabi
Upload 4 files
905d2fe
verified
28 days ago
raw
Copy download link
history
blame
Safe
174 Bytes
FROM
python:
3.10
WORKDIR
/app
COPY
. .
RUN
pip install --no-cache-dir -r requirements.txt
ENV
PORT=
7860
CMD
[
"uvicorn"
,
"app:app"
,
"--host"
,
"0.0.0.0"
,
"--port"
,
"7860"
]