我试图添加自动化脚本,该脚本需要每天克隆一些git repo。
我基本上遵循我发现的内容并尝试了此操作:
COPY id_rsa /root/.ssh/id_rsa
RUN yum install -y git
RUN eval "$(ssh-agent -s)" && \
ssh-add /root/.ssh/id_rsa && \
git clone <my repo>
其中id_rsa基本上是我的私有密钥的副本,我已将其放置在运行docker文件的目录下。 k
但是,看来git仍然不允许我克隆:
Identity added: /root/.ssh/id_rsa (/root/.ssh/id_rsa)
Agent pid 13
Initialized empty Git repository in /test/.git/
Host key verification failed.
fatal: The remote end hung up unexpectedly
非常感谢您的帮助。谢谢!