我想通过Docker中的requirements.txt克隆一个GitHub repo。
实际上,需求文件包含:
-e git://github.com/USERNAME/REPO.git
Django==1.11.8
....
我应该在Dockerfile中添加什么特定命令来正确执行git clone命令。
我试了RUN git clone git@github.com:USERNAME/REPO.git
但没有成功。
有什么建议吗?
答案 0 :(得分:0)
我找到了解决方案,
我只是从
修改我的代码 -e git://github.com/USERNAME/REPO.git
到
git+https://github.com/USERNAME/REPO.git
,效果很好。