コンテナ内部で
git clone git@github.com:motto1123/mot.git
をした際はうまくいったのに、
RUN git clone git@github.com:motto1123/mot.git
とすると以下のようなエラーが
Cloning into 'motto'...
Host key verification failed.
fatal: Could not read from remote repository.
Please make sure you have the correct access rights
and the repository exists.
ERROR: Service 'shell' failed to build: The command '/bin/sh -c git clone git@github.com:motto1123/motto.git' returned a non-zero code: 128
ちょっと時間がかかったのですが、結局以下のようにするとOK
RUN git clone https://github.com/motto1123/mot
git@から始まるのでやるとうまくいかないので、httpsで始まる命令にする必要があります。