luoluoluo22's picture
初始提交:闲鱼搜索API服务
d0f36e8
raw
history blame contribute delete
284 Bytes
FROM python:3.9-slim
WORKDIR /app
COPY requirements.txt .
RUN pip install --no-cache-dir -r requirements.txt
COPY . .
# 设置环境变量
ENV HOST=0.0.0.0
ENV PORT=7860
# 暴露端口(Hugging Face Spaces使用7860端口)
EXPOSE 7860
# 启动应用
CMD ["python", "app.py"]