Spaces:
Running
Running
File size: 419 Bytes
6e56713 7f7b229 6e56713 45f0945 6e56713 c75fd8a 6e56713 7b51116 6e56713 7b51116 0be888b 6e56713 0be888b 6e56713 7b51116 6e56713 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 |
FROM python:3.10-slim
# 显式声明环境变量(与huggingface配置同步)
ENV TRANSFORMERS_CACHE=/model-cache \
PYTHONUNBUFFERED=1
# 创建缓存目录
RUN mkdir -p /model-cache && chmod 777 /model-cache
# 安装依赖
RUN apt-get update && apt-get install -y gcc python3-dev
WORKDIR /app
COPY . .
RUN pip install --no-cache-dir -r requirements.txt
CMD ["gunicorn", "--bind", "0.0.0.0:8080", "app:app"] |