Skip to content

artisantek/docker-multistagebuild-java

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

3 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

DOCKER MULTI STAGE BUILDS

One of the most challenging things about building images is keeping the image size down. The docker multi-stage builds are a way of organizing Dockerfile to minimize the size of the final docker image, container and ultimately improve the performance of the container.

In a multi-stage build we will have multiple FROM instructions in a single Dockerfile and each FROM instruction begins a new stage. We can selectively copy artifacts from one stage to another.

Basically, instead of keeping all the unnecessary supported libraries, dependency files etc. using multi-stage builds we can discord all these components to make our application light and less vulnerable.

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

 
 
 

Contributors