AWS に spree アプリケーションをデプロイしようとしています。Elastic-beanstalk をセットアップし、my_project/.ebextensions/ にこの .config ファイルを追加した後
packages:
yum:
git-core: []
container_commands:
bundle:
command: "gem install bundle"
assets:
command: "bundle exec rake assets:precompile"
db:
command: "bundle exec rake db:migrate"
leader_only: true
git aws.push を使用してアプリをデプロイしましたが、次のエラー メッセージが表示されました。
どのソースにも rake-10.1.0 が見つかりませんでした (Bundler::GemNotFound)
bundle show rake を使用して宝石セットを再確認すると、次のようになります。
... /gems/rake-10.1.0
AWS のログファイルを見ていると、次のエラーが見つかりました。
sh: git: コマンドが見つかりません Git エラー: コマンド `git clone ' https://github.com/spree/spree.git '
私は何を間違っていますか?