You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
FROM python:3.11-slim
|
|
|
|
WORKDIR /app
|
|
|
|
# 一次性复制所有文件
|
|
COPY . .
|
|
|
|
# 设置镜像源
|
|
RUN pip config set global.index-url https://mirrors.aliyun.com/pypi/simple
|
|
|
|
# 安装依赖
|
|
RUN pip install --no-cache-dir -r requirements.txt
|
|
|
|
EXPOSE 5190
|
|
CMD ["python", "app.py"]
|
|
|