我使用docker通过在VM上进行pip安装来使用多个python软件包。现在,我为这些目的在这些模块中修改了两个文件。如何让docker在dockerfile中通过pip安装的文件上查看这些文件?我想,仅将修改后的python文件复制到工作目录下是行不通的吗?
答案 0 :(得分:0)
方法01:
步骤1:
像以前一样通过RUN pip install安装所需的模块
第2步:
删除将在下一步中添加的文件
第3步:
将修改后的文件从当前目录复制到映像中的正确路径。
完成
方法02
Install everything in Dockerfile as before
Build the image
Run a container from that image
Exec into the container and modify the files
Get out of the conainer and commit the container as new image