It should be easier to maintain and faster to build and deploy new images when we use multistage docker builds.
Any ideas what files we need to copy from official node image?
from /usr/local/bin:
- node
- npm -> ../lib/node_modules/npm/bin/npm-cli.js
- npx -> ../lib/node_modules/npm/bin/npx-cli.js
- yarn -> /opt/yarn/bin/yarn
- yarnpkg -> /opt/yarn/bin/yarn
from /usr/local/lib:
from /opt:
Am i missing something?
Anyone with better linux experience. Are there any issues with copied binaries?
Any potential performance degradation ?
It should be easier to maintain and faster to build and deploy new images when we use multistage docker builds.
Any ideas what files we need to copy from official node image?
from /usr/local/bin:
from /usr/local/lib:
from /opt:
Am i missing something?
Anyone with better linux experience. Are there any issues with copied binaries?
Any potential performance degradation ?