ubuntu下安装docker 打包 python images
Posted XiaoMaPro
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了ubuntu下安装docker 打包 python images相关的知识,希望对你有一定的参考价值。
ubuntu下安装python
apt-get update
apt-get install python3
apt-get install python3-pip
apt-get install python3-dev
apt-get install openssl
apt-get install libssl-dev
apt-get install libffi-dev
查看是否成功
docker run -v /user/text/pythonimage:/pythonimage -w /pythonimage ubuntu python3 test.py
-v参数,冒号前为宿主机目录,必须为绝对路径,冒号后为镜像内挂载的路径
-w参数,是指定为当前镜像工作目录
在本机/user/text/pythonimage下创建一个test.py,执行
打包装python的容器:
命令:docker commit <容器id> 新的镜像名
docker commit 1604777a778c docker/python3test
批量安装库:
命令:docker -v 宿主机目录:容器目录 -w 容器当前工作目录 镜像名 命令
docker run -v /user/text/pythonimage:/pythonimage -w /pythonimage ubuntu pip3 install -r requirements.txt
-v参数,冒号前为宿主机目录,必须为绝对路径,冒号后为镜像内挂载的路径
-w参数,是指定为当前镜像工作目录
因为再启动镜像会到初始化的样子所以再打包一次容器,保留内容
docker commit 62d4eefe7e62 python3test
进入容器:
docker run -i -t -v /user/text/pythonimage:/pythonimage -w /pythonimage python3test /bin/bash
新建一个test.py再执行:
docker run -v /user/text/pythonimage:/pythonimage -w /pythonimage python3test python test.py
导出镜像命令:
docker save -o /user/text/pythonimage/python3test.tar python3test
-o参数,输出文件
需要导出路径喝文件名
需要导出的镜像名
运行:
docker run -p 5000:5000 -v /user/text/pythonimage:/pythonimage -w /pythonimage python3test python test.py
参考:
https://blog.csdn.net/sherry_rui/article/details/50417215
https://blog.csdn.net/u010900754/article/details/74592184
以上是关于ubuntu下安装docker 打包 python images的主要内容,如果未能解决你的问题,请参考以下文章
Android自动化打包记录--Jenkins+Docker+WSL2
Android自动化打包记录--Jenkins+Docker+WSL2