dockerfile でプライベート Git リポジトリをクローンする 質問する

dockerfile でプライベート Git リポジトリをクローンする 質問する

私は、さまざまな動作している dockerfiles からこのコードをコピーしました。これが私のコードです:

FROM ubuntu

MAINTAINER Luke Crooks "[email protected]"

# Update aptitude with new repo
RUN apt-get update

# Install software 
RUN apt-get install -y git python-virtualenv

# Make ssh dir
RUN mkdir /root/.ssh/

# Copy over private key, and set permissions
ADD id_rsa /root/.ssh/id_rsa
RUN chmod 700 /root/.ssh/id_rsa
RUN chown -R root:root /root/.ssh

# Create known_hosts
RUN touch /root/.ssh/known_hosts

# Remove host checking
RUN echo "Host bitbucket.org\n\tStrictHostKeyChecking no\n" >> /root/.ssh/config

# Clone the conf files into the docker container
RUN git clone [email protected]:Pumalo/docker-conf.git /home/docker-conf

これでエラーが発生します

Step 10 : RUN git clone [email protected]:Pumalo/docker-conf.git /home/docker-conf
 ---> Running in 0d244d812a54
Cloning into '/home/docker-conf'...
Warning: Permanently added 'bitbucket.org,131.103.20.167' (RSA) to the list of known hosts.
Permission denied (publickey).
fatal: Could not read from remote repository.

Please make sure you have the correct access rights
and the repository exists.
2014/04/30 16:07:28 The command [/bin/sh -c git clone [email protected]:Pumalo/docker-conf.git /home/docker-conf] returned a non-zero code: 128

dockerfiles を使用するのは今回が初めてですが、私が読んだ内容 (および動作中の構成から取得した内容) からは、なぜこれが機能しないのかわかりません。

私の id_rsa は dockerfile と同じフォルダーにあり、問題なくこのリポジトリを複製できるローカル キーのコピーです。

編集:

私の dockerfile には以下を追加できます:

RUN cat /root/.ssh/id_rsa

正しいキーが出力されるので、正しくコピーされていることがわかります。

私もノアのアドバイスに従って実行してみました:

RUN echo "Host bitbucket.org\n\tIdentityFile /root/.ssh/id_rsa\n\tStrictHostKeyChecking no" >> /etc/ssh/ssh_config

残念ながらこれも機能しません。

ベストアンサー1

私のキーはパスワードで保護されていたため問題が発生していましたが、現在機能しているファイルが以下にリストされています(将来の Google 社員の助けになるよう)。

FROM ubuntu

MAINTAINER Luke Crooks "[email protected]"

# Update aptitude with new repo
RUN apt-get update

# Install software 
RUN apt-get install -y git
# Make ssh dir
RUN mkdir /root/.ssh/

# Copy over private key, and set permissions
# Warning! Anyone who gets their hands on this image will be able
# to retrieve this private key file from the corresponding image layer
ADD id_rsa /root/.ssh/id_rsa

# Create known_hosts
RUN touch /root/.ssh/known_hosts
# Add bitbuckets key
RUN ssh-keyscan bitbucket.org >> /root/.ssh/known_hosts

# Clone the conf files into the docker container
RUN git clone [email protected]:User/repo.git

おすすめ記事