grokapi / Dockerfile
JackJame's picture
Upload 2 files
465c101 verified
raw
history blame contribute delete
294 Bytes
# 直接从 GitHub Container Registry 拉取预构建镜像
FROM ghcr.io/1041006580/grok2api:latest
# Hugging Face Spaces 使用 7860 端口
ENV PORT=7860
EXPOSE 7860
# 覆盖启动命令,使用 HF 的端口
CMD ["python", "-m", "uvicorn", "main:app", "--host", "0.0.0.0", "--port", "7860"]