Hugging Face
Models
Datasets
Spaces
Posts
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
MsChabane
/
RustDetective
like
0
Sleeping
App
Files
Files
Community
Fetching metadata from the HF Docker repository...
84402c7
RustDetective
/
DockerFile
MsChabane
up
84402c7
verified
16 days ago
raw
Copy download link
history
blame
Safe
211 Bytes
FROM
python:
3.10
WORKDIR
/app
COPY
. .
RUN
pip install --upgrade pip
RUN
pip install -r requirements.txt
EXPOSE
7860
CMD
[
"uvicorn"
,
"app:app"
,
"--host"
,
"0.0.0.0"
,
"--port"
,
"7860"
]