This is a followup interactive tutorial from this blogpost to reduce docker nodejs images by 50% using Zeit pkg and docker multi-stage builds. The traditional way Before jumping into the magic trick, we’ll build a nodejs docker image as we would do traditionally to show the space that we’re saving by using this new approach. Let’s create a simple node application: echo 'console.log("Hello, pkg")' | tee index.js We’ll now package it using a very basic dockerfile echo 'FROM node:boron-s...