RUN yum install -y いろいろ # Setup SSH for git clone ENV HOME /root ADD ssh/ /root/.ssh RUN chmod 600 /root/.ssh/*; ssh-keyscan bitbucket.org > /root/.ssh/known_hosts # Get Project and compile RUN git clone git@bitbucket.org:xanxys/coolproject.git; \ cd coolproject; \ scons # でもmakeでもなんでも (遠隔)リポジトリにcommitされていればdocker buildによって新しいイメージを作成可能だが(git clone時にキャッシュ無効化する方法が必要だがそれはここでは扱わない)遅いし、毎回commitするのは面倒。
