2017-06-19 10 views
4

firebase-toolsとangular-cliのグローバルインストールを使用してドッカーイメージを構築しようとしています。 ノードの2つのバージョン:6.x(LTSボロン)とv8.x(最新のアルパイン)の同じイメージを構築しています。ローカルでは、両方のイメージが正常に構築されますが、ドッカーハブでビルドしようとすると、v6.xのみが正常にビルドされます。 v8.xでは、未定義のユーザと誰もアクセスしないユーザのアクセス権にが含まれています。私はすでにrootユーザー(USER root)を使用しています。この設定がなければ(またはUSERノードを使用して)、両方のイメージが作成されないからです。ドッカー画像にnpmグローバルインストールでアクセス許可エラーがありません

これは私のDockerfileです:

FROM node:latest 

USER root 

RUN npm install --quiet --no-progress -g @angular/[email protected] firebase-tools 
RUN npm cache clean --force 

そして、これが出力されます:

Step 4/5 : RUN npm install --quiet --no-progress -g @angular/[email protected] firebase-tools 

---> Running in fce3da11b04e 

npm WARN deprecated [email protected]: Use uuid module instead 
/usr/local/bin/firebase -> /usr/local/lib/node_modules/firebase-tools/bin/firebase 
/usr/local/bin/ng -> /usr/local/lib/node_modules/@angular/cli/bin/ng 

> [email protected] install /usr/local/lib/node_modules/@angular/cli/node_modules/node-sass 
> node scripts/install.js 

Unable to save binary /usr/local/lib/node_modules/@angular/cli/node_modules/node-sass/vendor/linux-x64-57 : { Error: EACCES: permission denied, mkdir '/usr/local/lib/node_modules/@angular/cli/node_modules/node-sass/vendor' 
    at Object.fs.mkdirSync (fs.js:890:18) 
    at sync (/usr/local/lib/node_modules/@angular/cli/node_modules/mkdirp/index.js:71:13) 
    at Function.sync (/usr/local/lib/node_modules/@angular/cli/node_modules/mkdirp/index.js:77:24) 
    at checkAndDownloadBinary (/usr/local/lib/node_modules/@angular/cli/node_modules/node-sass/scripts/install.js:111:11) 
    at Object.<anonymous> (/usr/local/lib/node_modules/@angular/cli/node_modules/node-sass/scripts/install.js:154:1) 
    at Module._compile (module.js:569:30) 
    at Object.Module._extensions..js (module.js:580:10) 
    at Module.load (module.js:503:32) 
    at tryModuleLoad (module.js:466:12) 
    at Function.Module._load (module.js:458:3) 

errno: -13, 
code: 'EACCES', 
syscall: 'mkdir', 
path: '/usr/local/lib/node_modules/@angular/cli/node_modules/node-sass/vendor' } 

> [email protected] install /usr/local/lib/node_modules/firebase-tools/node_modules/grpc > node-pre-gyp install --fallback-to-build --library=static_library 
node-pre-gyp ERR! Tried to download(undefined): https://storage.googleapis.com/grpc-precompiled-binaries/node/grpc/v1.3.8/node-v57-linux-x64.tar.gz node-pre-gyp ERR! Pre-built binaries not found for [email protected] and [email protected] (node-v57 ABI) (falling back to source compile with node-gyp) 
gyp WARN EACCES user "undefined" does not have permission to access the dev dir "/root/.node-gyp/8.1.2" gyp WARN EACCES attempting to reinstall using temporary dev dir "/usr/local/lib/node_modules/firebase-tools/node_modules/grpc/.node-gyp" 
gyp WARN EACCES user "nobody" does not have permission to access the dev dir "/usr/local/lib/node_modules/firebase-tools/node_modules/grpc/.node-gyp/8.1.2" gyp WARN EACCES attempting to reinstall using temporary dev dir "/usr/local/lib/node_modules/firebase-tools/node_modules/grpc/.node-gyp" 
gyp WARN EACCES user "nobody" does not have permission to access the dev dir "/usr/local/lib/node_modules/firebase-tools/node_modules/grpc/.node-gyp/8.1.2" gyp WARN EACCES attempting to reinstall using temporary dev dir "/usr/local/lib/node_modules/firebase-tools/node_modules/grpc/.node-gyp" 
gyp WARN EACCES user "nobody" does not have permission to access the dev dir "/usr/local/lib/node_modules/firebase-tools/node_modules/grpc/.node-gyp/8.1.2" gyp WARN EACCES attempting to reinstall using temporary dev dir "/usr/local/lib/node_modules/firebase-tools/node_modules/grpc/.node-gyp" 
gyp WARN EACCES user "nobody" does not have permission to access the dev dir "/usr/local/lib/node_modules/firebase-tools/node_modules/grpc/.node-gyp/8.1.2" gyp WARN EACCES attempting to reinstall using temporary dev dir "/usr/local/lib/node_modules/firebase-tools/node_modules/grpc/.node-gyp" 
(infinite loop) 

答えて

関連する問題