zhangxiao
2024-10-18 a6ebe9044b4272722d2ca2ace061140050915c95
1
2
3
4
5
6
7
8
9
10
11
12
13
14
FROM python:3.11
 
# 安装 PyInstaller
RUN pip install pyinstaller
 
# 复制项目文件到容器中
COPY . /app
WORKDIR /app
 
# 安装项目依赖
RUN pip install -r requirements.txt
 
# 使用 PyInstaller 打包应用,并确保文件被复制到 dist 目录
RUN pyinstaller -F main.py