aistock-api / Dockerfile
fromozu's picture
Upload 3 files
41667be verified
raw
history blame contribute delete
274 Bytes
FROM python:3.11-slim
WORKDIR /app
# 安装依赖
COPY requirements.txt .
RUN pip install --no-cache-dir -r requirements.txt
# 复制应用代码
COPY app.py .
# Hugging Face Spaces 使用 7860 端口
EXPOSE 7860
# 启动应用
CMD ["python", "app.py"]