Spaces:
Running
Running
File size: 298 Bytes
79b9760 d08a5ca 79b9760 51eae25 439be6c 51eae25 8e63062 79b9760 43b171b | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 | FROM python:3.9-slim
ENV PYTHONUNBUFFERED=1
WORKDIR /app
# 只安装必要的包(不再需要 torch 和 transformers)
COPY requirements.txt .
RUN pip install --no-cache-dir --upgrade pip && \
pip install --no-cache-dir -r requirements.txt
COPY . .
EXPOSE 7860
CMD ["python", "app.py"] |