zai / Dockerfile
hongshi-files's picture
Update Dockerfile
795a156 verified
raw
history blame contribute delete
256 Bytes
FROM python:3.10-slim
WORKDIR /app
# 安装依赖
COPY requirements.txt .
RUN pip install --no-cache-dir -r requirements.txt
# 复制源码
COPY . .
# Hugging Face Space 默认使用 7860 端口
ENV PORT=7860
ENV HOST=0.0.0.0
CMD ["python", "app.py"]