1 Star 0 Fork 3

上善若水/TestPlatformByYangLiang

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
克隆/下载
Dockerfile 1.44 KB
一键复制 编辑 原始数据 按行查看 历史
# 将官方 Python 运行时用作父镜像
FROM python:3.9
# 将工作目录设置为 /root/python_docker/python-project-packaging
WORKDIR /root/python_docker
#ADD requirements.txt requirements.txt
#
## 安装 requirements.txt 中指定的任何所需软件包
## 拉取代码
#RUN pip3 install -r requirements.txt -i https://pypi.doubanio.com/simple \
# && git clone http://10.10.10.46:8097/root/python-project-packaging.git
# 安装 requirements.txt 中指定的任何所需软件包
# 拉取代码
RUN git clone http://10.10.10.163:8097/root/python-project-packaging.git \
&& pip3 install -r python-project-packaging/requirements.txt -i https://pypi.doubanio.com/simple \
&& cd python-project-packaging \
&& pyinstaller fire.spec
# 在容器启动时运行 web_main.py
#CMD ["python3", "python-project-packaging/web_main.py"]
CMD ["./python-project-packaging/dist/fire"]
## 将官方 Python 运行时用作父镜像
#FROM python:3.9
## 将工作目录设置为 /root/python_docker/python-project-packaging
#WORKDIR ./
#
#ADD . .
#
## 安装 requirements.txt 中指定的任何所需软件包
## 拉取代码
#RUN pip3 install -r requirements.txt -i https://pypi.doubanio.com/simple
## && git clone http://10.10.10.46:8097/root/python-project-packaging.git
#
## 在容器启动时运行 web_main.py
#CMD ["python3", "web_main.py"]
# docker build -t tpbyldt .
# docker run -d -p 1652:1650 -v /root/python_item/log/:/dlog/ --name tpbyldt tpbyldt
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
Python
1
https://gitee.com/civins/TestPlatformByYangLiang.git
git@gitee.com:civins/TestPlatformByYangLiang.git
civins
TestPlatformByYangLiang
TestPlatformByYangLiang
master

搜索帮助