How to use multi-stage docker build to reduce image size
Optimizing the docker image size for compiled language applications can be done using multi-stage docker build. This article is written based on an example application written in Golang. This multi-stage build can be applied to any other language such as C#, Java, etc. Why should we reduce docker…
