Hugging Face
Models
Datasets
Spaces
Community
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
axvg
/
alsp2
like
0
Sleeping
App
Files
Files
Community
Fetching metadata from the HF Docker repository...
main
alsp2
/
Dockerfile
Alex Vega
init
f1acbf1
24 days ago
raw
Copy download link
history
blame
contribute
delete
Safe
213 Bytes
FROM
python:
3.12
-slim
WORKDIR
/app
COPY
requirements.txt .
RUN
pip install --no-cache-dir -r requirements.txt
COPY
. .
RUN
chmod
-R 777 /app
CMD
[
"uvicorn"
,
"main:app"
,
"--host"
,
"0.0.0.0"
,
"--port"
,
"7860"
]