File size: 298 Bytes
7f7b229
 
 
 
 
8e74b06
 
 
 
7f7b229
 
 
1
2
3
4
5
6
7
8
9
10
11
12
FROM python:3.9-slim

WORKDIR /app
COPY . .

# 先安装依赖确保版本正确
RUN pip install --no-cache-dir -r requirements.txt \
    && pip install "sentence-transformers" \
    && pip install "torch" --extra-index-url https://download.pytorch.org/whl/cpu

EXPOSE 5000
CMD ["python", "app.py"]