GLM-4-Voice / Dockerfile
leezhuuu's picture
Create Dockerfile
a6ea6ae verified
raw
history blame
367 Bytes
FROM python:3.9
# 设置工作目录
WORKDIR /app
# 复制项目文件
COPY . /app
# 安装依赖
RUN pip install --no-cache-dir -r requirements.txt
# 下载模型 (由于模型很大,建议使用 Git LFS)
RUN git lfs install
RUN git clone https://huggingface.co/THUDM/glm-4-Voice-decode
# 暴露端口
EXPOSE 8888
# 启动命令
CMD ["python", "web_demo.py"]