You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
feat: Multi-stage Docker build
We can cut down on the size of the final image by breaking the build
up into two stages: compilation and execution. Since we don't need the
compilation dependencies to execute cycle we create one image which
has those then create a new image that does not, copy cycle into the
new smaller image, then discard the original.