notdiamond2api / Dockerfile
ffreemt
Update files
dabcedb
raw
history blame contribute delete
310 Bytes
# 使用Python 3.9作为基础镜像
FROM python:3.9-slim
# 设置工作目录
WORKDIR /app
# 复制依赖文件
COPY requirements.txt .
# 安装依赖
RUN pip install --no-cache-dir -r requirements.txt
# 复制应用代码
COPY . .
# 暴露端口
EXPOSE 3000
CMD flask run --host=0.0.0.0 --port=${PORT}