Docker で npm を実行すると、Error: could not get uid/gid の問題が発生します。
しかし、`unsafe-perm true` を設定することで、この問題を解決することができます。信じられないですね。
npm config set unsafe-perm true
その他の利用可能な npm の設定 # セキュリティ証明書のチェックを無効にする
npm config set unsafe-perm true
# 強制 SSL を無効にする
npm config set strict-ssl false
# npm のソースを変更する
npm config set registry https://registry.npm.taobao.org
#プロキシの設定
# socks5 プロキシ
npm config set proxy http://xx@xx.com:xxxx
http プロキシ#
npm config set https-proxy=http://xx@xx.com:xxxx