2016-08-26 11 views
1

これを数時間試してみましたが、私のサーバー上でDockerを更新しましたが、今は「git push dokku origin master」Dokku Buil Failed - Pre-receiveフックが拒否されました

これは私が得るメッセージです。助けてください!!!

Counting objects: 59, done. 
Delta compression using up to 4 threads. 
Compressing objects: 100% (56/56), done. 
Writing 



objects: 100% (59/59), 5.89 KiB | 0 bytes/s, done. 
Total 59 (delta 38), reused 0 (delta 0) 
-----> Cleaning up... 
-----> Building psofnyc from herokuish... 
-----> Adding BUILD_ENV to build environment... 
-----> Node.js app detected 

-----> Creating runtime environment 

     NPM_CONFIG_LOGLEVEL=error 
     NPM_CONFIG_PRODUCTION=true 
     NODE_ENV=production 
     NODE_MODULES_CACHE=true 

-----> Installing binaries 
     engines.node (package.json): 4.1.2 
     engines.npm (package.json): 2.14.4 

     Downloading and installing node 4.1.2... 
     npm 2.14.4 already installed with node 

-----> Restoring cache 
     Loading 2 from cacheDirectories (default): 
     - node_modules (not cached - skipping) 
     - bower_components (not cached - skipping) 

-----> Building dependencies 
     Pruning any extraneous modules 
     Installing node modules (package.json) 
remote: /tmp/buildpacks/heroku-buildpack-nodejs/lib/dependencies.sh: line 10: 306 Killed     npm install --unsafe-perm --userconfig $build_dir/.npmrc 2>&1 

-----> Build failed 

     We're sorry this build is failing! You can troubleshoot common issues here: 
     https://devcenter.heroku.com/articles/troubleshooting-node-deploys 

     If you're stuck, please submit a ticket so we can help: 
     https://help.heroku.com/ 

     Love, 
     Heroku 

To [email protected]:psofnyc 
! [remote rejected] master -> master (pre-receive hook declined) 

答えて

2

私はそれが失敗しているnpm installコマンドの疑い:

私はnodejs専門家ではないが、「殺した」エラーは、メモリが不足しています示唆しています。

+0

これは間違いなく問題であり、少なくともnpm installの実行を処理するためにスワップメモリ​​を追加したいと思うでしょう。ヘロクでは、供給されたダイノーとは異なるシステムを使用してスラッグを構築するため、これは発生しません。 –

関連する問題