mirror of https://github.com/docker/docs.git
1.0 KiB
1.0 KiB
title | keywords | description | summary | layout | params | ||||||
---|---|---|---|---|---|---|---|---|---|---|---|
Building images | build images, Dockerfile, layers, tag, push, cache, multi-stage | Learn how to build Docker images from a Dockerfile. You'll understand the structure of a Dockerfile, how to build an image, and how to customize the build process. | Building container images is both technical and an art. You want to keep the image small and focused to increase your security posture, but also need to balance potential tradeoffs, such as caching impacts. In this series, you’ll deep dive into the secrets of images, how they are built and best practices. | series |
|
About this series
Learn how to build production-ready images that are lean and efficient Docker images, essential for minimizing overhead and enhancing deployment in production environments.
What you'll learn
- Understanding image layers
- Writing a Dockerfile
- Build, tag and publish an image
- Using the build cache
- Multi-stage builds