6473ppksj / Dockerfile
KinGRPOI's picture
Update Dockerfile
021eb8b verified
raw
history blame contribute delete
310 Bytes
# 使用 Python 3.13 轻量镜像
FROM python:3.13-slim
# 设置工作目录
WORKDIR /app
# 复制所有文件到容器中
COPY . /app/
# 安装依赖并设置权限
RUN pip install --no-cache-dir flask requests && \
chmod 755 -R /app
# 暴露端口
EXPOSE 7860
# 启动命令
CMD ["python", "app.py"]