Hugging Face
Models
Datasets
Spaces
Community
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
mebubo
/
gpted
like
0
Sleeping
App
Files
Files
Community
Fetching metadata from the HF Docker repository...
d403f68
gpted
/
Dockerfile
mebubo
Snapshot
d403f68
3 months ago
raw
Copy download link
history
blame
Safe
202 Bytes
FROM
ghcr.io/astral-sh/uv:python3.
12
-bookworm-slim
WORKDIR
/app
COPY
. /app
RUN
uv
sync
ENV
TRANSFORMERS_CACHE=/app/.cache/huggingface
CMD
[
".venv/bin/fastapi"
,
"run"
,
"--port"
,
"7860"
,
"main.py"
]