admin 管理员组文章数量: 887007
打包python环境(安装有ssh)提交远程服务器
1、windows用户下载Desktop Docker
2、编写dockerfile,这里命名为dockerfile_env2
# from基础镜像,如FROM python:3.7.2
FROM tisasrec_env:1.0WORKDIR /felton_environmentCOPY requirements.txt requirements.txtRUN pip install -r requirements.txt -i 镜像源
COPY sources.list.txt /etc/apt/sources.list
RUN apt-get update# 安装 openssh-server
RUN apt-get -y install openssh-server
requirements.txt类似下方
tensorflow==1.15
certifi==2022.5.18.1
joblib==1.1.0
numpy==1.19.5
tqdm==4.64.0
typing_extensions==4.2.0
3、依次运行docker命令
docker build -f dockerfile_env2 -t tisasrec_enviroment:1.1 .
docker images查看现有镜像
重新tag镜像docker tag tisasrec_enviroment:1.1 IP/guangz017/tisasrec_enviroment:1.1
docker push IP/guangz017/tisasrec_enviroment:1.1
本文标签: 打包python环境(安装有ssh)提交远程服务器
版权声明:本文标题:打包python环境(安装有ssh)提交远程服务器 内容由网友自发贡献,该文观点仅代表作者本人, 转载请联系作者并注明出处:http://www.freenas.com.cn/jishu/1732360714h1535136.html, 本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容,一经查实,本站将立刻删除。
发表评论