zero / Dockerfile
milk-git55's picture
Update Dockerfile
10a0607 verified
Raw
History Blame Contribute Delete
467 Bytes
# 使用 Python 基础镜像
FROM python:3.10-slim
# 设置工作目录
WORKDIR /app
# 安装系统依赖
RUN apt-get update && apt-get install -y \
git \
git-lfs \
&& rm -rf /var/lib/apt/lists/*
# 安装 Python 依赖
COPY requirements.txt .
RUN pip install --no-cache-dir -r requirements.txt
# 复制应用代码
COPY music_api.py .
# 暴露端口
EXPOSE 7860
# 启动命令
CMD ["uvicorn", "music_api:app", "--host", "0.0.0.0", "--port", "7860"]