Amulyaawscloudbasics.hashnode.dev·16 hours agoReducing Docker Image Size by 800%: The Magic of Multi-Stage Builds and Distroless Images🚀 Introduction: The Docker Image Bloat Problem Imagine creating a simple calculator application and ending up with a Docker image that's 861 MB in size. Sounds ridiculous, right? This is a common pain point for developers and DevOps engineers. Today...DiscussDevOpsDocker
Merbin Russelblog.merb.in·Nov 13, 2024Distroless: Balancing Security with PracticalityDistroless images are a type of Docker image designed to be as minimal as possible, containing only the essential components required to run a specific application. Advocates of Distroless claim that this minimalism enhances security by reducing the ...Discuss·86 readsdistroless
ashwini purwatashwini23.hashnode.dev·Jul 19, 2024Multistage Docker BuildsWhat is Multistage docker build? With multi-stage builds, a Docker build uses one base image for compilation, packaging, and unit tests and then a separate image for the application runtime. As a result, the final image is smaller in size since it do...DiscussDocker
Sujith Saisujith08.hashnode.dev·Jul 3, 2024OPTIMIZE YOUR DOCKER FILE: UPTO 100% Image Size Reduction Using Multistage and Distroless ImagesIntroduction: In the fast-paced world of containerized applications, optimizing Docker images is crucial for efficient deployment and resource utilization. One of the most effective strategies is leveraging multi-stage builds with Distroless images t...Discuss·57 readsDocker
Rachanarachanav.hashnode.dev·Jun 25, 2024Docker Day 4: Here's How You Can Reduce the Size of Your Docker Image by 99.7%What is Docker Multi-Stage-Build? Imagine you’re a chef making a delicious pizza. You want to prepare the dough, sauce, and toppings separately and combine them at the end. Similarly, Docker multi-stage builds allow you to create different stages in ...Discuss·57 readsEverything you need to know About DockerDocker
Bandhan Majumderbandhanmajumder.hashnode.dev·Jun 16, 2024Deploy a Flask app with multistage build and distroless container image (AWS EC2)Before starting anything we must know the file structure of a flask-based web app. The web-app we will deploy is Newz_Shortie . The main structure of this is : static -> contains all the images templates -> contains all the HTML files Dockerfile ...Discuss·1 like·50 readsDocker
Chetan Thapliyalblog.chetan-thapliyal.cloud·Apr 26, 2024Optimizing Docker Images with Multistage Builds: A Hugo Portfolio ExampleDocker has revolutionized the way we build, package, and deploy applications. However, as projects grow in complexity, the size of Docker images can quickly balloon, leading to slower build times, increased storage requirements, and reduced performan...Discuss·11 likes·37 readsProjectsDocker
kumaraswamy gorjakumargorja.tech·Feb 11, 2024Title: "Revolutionizing Docker Deployments: A Deep Dive into Multi-Stage Builds and Distroless Images for an 800% Image Size Reduction"Introduction: In the ever-evolving world of containerization, optimizing Docker images has become a crucial aspect of efficient deployment. In a recent project, I delved into the realm of Docker multi-stage builds and harnessed the power of Distroles...Discuss·1 like·34 readsdistroless
Rohit Deorerohitexplainstech.hashnode.dev·Jan 16, 2024Docker: A Comprehensive Guide to Interview Questions and Answers (Day-24)In recent years, Docker has revolutionized the world of software development and deployment. As organizations increasingly adopt containerization, Docker has become a key technology. If you're gearing up for a Docker interview, let's dive into some e...Discuss·1 likeDevops
Rohit Deorerohitexplainstech.hashnode.dev·Jan 12, 2024Optimizing Docker Images with Multi-Stage Builds (Day-21)Introduction Docker has become an integral part of the DevOps toolkit, streamlining the deployment process and ensuring consistency across different environments. However, as Docker images grow in complexity, their sizes can become a concern, impacti...Discuss·33 readsDevops