代码拉取完成,页面将自动刷新
# 使用官方 Python 基础镜像
FROM python:3.9-slim
# 设置工作目录
WORKDIR /app
# 复制本地的依赖文件和应用程序文件到容器中
COPY requirements.txt ./
COPY main.py ./
# 安装依赖项,并指定 pip 源
RUN python -m venv /app/.venv && \
/app/.venv/bin/pip install -i https://mirrors.aliyun.com/pypi/simple/ --upgrade pip && \
/app/.venv/bin/pip install -i https://mirrors.aliyun.com/pypi/simple/ -r requirements.txt
# 使用阿里云的 Debian 镜像源
RUN echo 'deb http://mirrors.aliyun.com/debian/ bullseye main non-free contrib\n\
deb-src http://mirrors.aliyun.com/debian/ bullseye main non-free contrib\n\
deb http://mirrors.aliyun.com/debian-security bullseye-security main\n\
deb-src http://mirrors.aliyun.com/debian-security bullseye-security main\n\
deb http://mirrors.aliyun.com/debian/ bullseye-updates main non-free contrib\n\
deb-src http://mirrors.aliyun.com/debian/ bullseye-updates main non-free contrib' > /etc/apt/sources.list
# 安装必要的库
RUN apt-get update && apt-get install -y libgtk-3-0
# 安装 NGINX
RUN apt-get update && apt-get install -y nginx && \
rm /etc/nginx/sites-enabled/default
# 复制 NGINX 配置文件
COPY nginx.conf /etc/nginx/conf.d/default.conf
# 设置环境变量
ENV PATH="/app/.venv/bin:$PATH"
ENV FLET_SERVER_PORT=8000
# 开放端口
EXPOSE 80
# 启动 Flet 和 NGINX
CMD service nginx start && python main.py
此处可能存在不合适展示的内容,页面不予展示。您可通过相关编辑功能自查并修改。
如您确认内容无涉及 不当用语 / 纯广告导流 / 暴力 / 低俗色情 / 侵权 / 盗版 / 虚假 / 无价值内容或违法国家有关法律法规的内容,可点击提交进行申诉,我们将尽快为您处理。