hfchat / Dockerfile
tianlong12's picture
Update Dockerfile
5c9c26b verified
raw
history blame contribute delete
402 Bytes
# 使用官方Python镜像作为基础镜像
FROM python:3.9
# 设置工作目录
WORKDIR /app
# 复制项目文件到工作目录
COPY . /app
# 安装项目依赖
RUN pip install --no-cache-dir -r requirements.txt
# 测试网络连接
RUN apt-get update && apt-get install -y curl
RUN curl -I https://huggingface.co./chat/
# 暴露应用端口
EXPOSE 8000
# 启动应用
CMD ["python", "app.py"]