bge-m3-api / Dockerfile
mattcracker's picture
Create Dockerfile
c24f398 verified
raw
history blame contribute delete
381 Bytes
FROM python:3.9-slim
WORKDIR /code
# 安装系统依赖
RUN apt-get update && apt-get install -y \
build-essential \
git \
&& rm -rf /var/lib/apt/lists/*
# 复制依赖文件
COPY requirements.txt .
# 安装依赖
RUN pip install --no-cache-dir -r requirements.txt
# 复制应用代码
COPY . .
# 设置环境变量
ENV PORT=7860
# 启动命令
CMD python app.py