1

新しく生成された react-scripts ベースのアプリケーションを GAE にデプロイしようとしていますが、問題が発生しています。ビルドは正常に完了したように見えますが、展開/「サービスの更新」中に失敗します。コンソールのエラーログに何も表示されないため、何が起こっているのかをデバッグする方法についての指針を探しています。

以下は、ビルドの最後の部分からの出力です。

Step 5 : CMD npm start
 ---> Running in b930fc7e35e6
 ---> 2d0d24685054
Removing intermediate container b930fc7e35e6
Successfully built 2d0d24685054

以下は、サービスの更新中に表示されるエラーです。

Updating service [default]...failed.                                                                                                                        
ERROR: (gcloud.app.deploy) Error Response: [13] Timed out when starting VMs.  It's possible that the application code is unhealthy.  (0/2 ready, 2 still deploying).

app.yaml:

runtime: nodejs
vm: true

パッケージ.json:

{
  "name": "venue-web",
  "version": "0.1.0",
  "private": true,
  "engines": {
    "node": "~6.8"
  },
  "devDependencies": {
    "react-scripts": "0.7.0"
  },
  "dependencies": {
    "react": "^15.3.2",
    "react-dom": "^15.3.2"
  },
  "scripts": {
    "start": "react-scripts start",
    "build": "react-scripts build",
    "test": "react-scripts test --env=jsdom",
    "eject": "react-scripts eject",
    "deploy": "gcloud app deploy --project venue-web"
  }
}
4

1 に答える 1