Differences
This shows you the differences between two versions of the page.
engineering:computer_science:docker:dockerfile_good_practices [2024/08/29 22:39] – created carlossousa | engineering:computer_science:docker:dockerfile_good_practices [2024/08/29 22:39] (current) – carlossousa | ||
---|---|---|---|
Line 5: | Line 5: | ||
**Last Reviewed:** 29/08/2024 | **Last Reviewed:** 29/08/2024 | ||
- | | + | * |
**Incremental Build Time:** | **Incremental Build Time:** | ||
- | | + | |
- | * Organize Dockerfile instructions from least to most frequently changing steps to optimize caching. | + | |
- | * **Tip #2: Specific COPY commands** | + | * Organize Dockerfile instructions from least to most frequently changing steps to optimize caching. |
- | * Avoid using '' | + | * **Tip #2: Specific COPY commands** |
- | * **Tip #3: Cacheable units for installations** | + | * Avoid using '' |
- | * Combine related commands like '' | + | * **Tip #3: Cacheable units for installations** |
- | * | + | * Combine related commands like '' |
**Image Size:** | **Image Size:** | ||
- | | + | |
- | * Avoid installing unnecessary packages or debugging tools to reduce the image size. | + | |
- | * **Tip #5: Remove package manager cache** | + | * Avoid installing unnecessary packages or debugging tools to reduce the image size. |
- | * Clear the package manager cache in the same '' | + | * **Tip #5: Remove package manager cache** |
- | * | + | * Clear the package manager cache in the same '' |
**Maintainability: | **Maintainability: | ||
- | | + | |
- | * Official images are well-maintained and help reduce maintenance effort across multiple projects. | + | |
- | * **Tip #7: Use more specific tags** | + | * Official images are well-maintained and help reduce maintenance effort across multiple projects. |
- | * Avoid using the '' | + | * **Tip #7: Use more specific tags** |
- | * **Tip #8: Look for minimal flavors** | + | * Avoid using the '' |
- | * Use smaller variants of images (e.g., '' | + | * **Tip #8: Look for minimal flavors** |
- | * | + | * Use smaller variants of images (e.g., '' |
**Reproducibility: | **Reproducibility: | ||
- | | + | |
- | * Build your application directly within the Docker environment to avoid inconsistencies across different machines. | + | |
- | * **Tip #10: Fetch dependencies in a separate step** | + | * Build your application directly within the Docker environment to avoid inconsistencies across different machines. |
- | * Isolate dependency fetching in its own cacheable step to prevent unnecessary re-downloading when only the source code changes. | + | * **Tip #10: Fetch dependencies in a separate step** |
- | * | + | * Isolate dependency fetching in its own cacheable step to prevent unnecessary re-downloading when only the source code changes. |
**Multi-Stage Builds:** | **Multi-Stage Builds:** | ||
- | | + | |
- | * Use multiple '' | + | |
+ | * Use multiple '' | ||