Hugging Face
Models
Datasets
Spaces
Buckets
new
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
kalpeshparashar
/
quasar
like
0
Sleeping
App
Files
Files
Community
Fetching metadata from the HF Docker repository...
main
quasar
/
Dockerfile
Kalpesh Parashar
refactor: clean up comments and improve code readability across multiple files
40ace8f
20 days ago
raw
Copy download link
history
blame
contribute
delete
Safe
134 Bytes
FROM
python:
3.10
-slim
WORKDIR
/app
RUN
pip install uv
COPY
. .
ENV
PYTHONPATH=
"/app"
RUN
uv pip install --system .
CMD
[
"server"
]