1 Star 0 Fork 0

fengdx/GetQzonehistory

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
Dockerfile 1.39 KB
一键复制 编辑 原始数据 按行查看 历史
LibraHp_0928 提交于 2024-11-02 17:20 . update
# 使用官方 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
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/feng-daoxin/GetQzonehistory.git
git@gitee.com:feng-daoxin/GetQzonehistory.git
feng-daoxin
GetQzonehistory
GetQzonehistory
gui

搜索帮助

0d507c66 1850385 C8b1a773 1850385