Yash Kharcheyash-kharche.hashnode.dev·Dec 2, 2024Dockerize Django Web Application with Multi-Stage BuildsAs a computer science student and a full-stack developer intern at The Hotspring, I've had the chance to work on a wide range of applications, including Django-based ones. Throughout my journey, I’ve also developed a strong interest in DevOps, partic...Discuss·10 likes·94 readsDocker
Amulyaawscloudbasics.hashnode.dev·Nov 21, 2024Reducing 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
Munilakshmi G J100daysdevops.hashnode.dev·Nov 9, 2024Day 15 of 100 Days : Mastering Multi-Stage Builds in DockerWelcome to Day 15 of my 100 Days of DevOps journey! Today, we’re diving deep into multi-stage builds in Docker, a crucial technique for building lean and efficient Docker images. In this post, I'll walk you through the concepts behind multi-stage bui...DiscussDocker
Kevsquid.hashnode.dev·Nov 9, 2024Multi-stage docker imagesOne of the requirement as DevOps is to constantly optimize build process. Today if you're shipping container images with Docker and your Dockerfiles aren't multi-stage, you're likely shipping unnecessary bloat to production. This makes your image siz...DiscussCICDmulti stage docker file
Manoj Shetmanojshet.hashnode.dev·Oct 23, 2024Containerizing a Flask Application with Docker: Rock-Paper-Scissors GameContainerization has revolutionized the way applications are developed, deployed, and managed. It allows developers to package applications along with their dependencies into containers, ensuring consistency across different environments. This blog p...DiscussDocker
Siddhi Kiran Bajracharyasiddhibajracharya.hashnode.dev·Sep 10, 2024My docker image for IOT device is huge!Recently, I was working on IOT devices. My setup is a raspbery pi+oak device using balena cloud. As I was developing an applicaton for this setup, I had to write a dockerfile because Balena uses a dockerfile to build images and run containers on the ...DiscussDockerbalena
Yusuf Isahyuscode.hashnode.dev·Sep 6, 2024Chapter 5 - Building Docker ImagesIntroduction To truly harness the power of Docker, we need to create our own custom images. This chapter will take you into the world of image creation, covering the essential topics of building images from Dockerfiles, tagging images for easy manage...DiscussDockerDocker
Rahul Vadakkiniyilrahulvadakkiniyil.hashnode.dev·Sep 6, 2024Day 3 of 40 days of Kubernetes Series : Multi Stage Docker BuildWhat is a Docker Multi-Stage Build? A Docker multi-stage build is a Dockerfile that uses multiple FROM statements to build a Docker image in stages. This can be used to reduce the image size, improve performance, and make the build process more effic...Discuss·63 readsmulti stage docker file
Amrit Poudeleramritpoudel.hashnode.dev·Aug 23, 20246. multistage dockerfile practiceAs a DevOps enthusiast, optimizing Dockerfiles has been an enlightening journey. Over the past few weeks, I've been working on Dockerizing different applications, including simple static websites, Java applications, and React apps. This article showc...Discuss·72 readsmulti stage docker file
Amrit Poudeleramritpoudel.hashnode.dev·Aug 22, 20245.Comprehensive Guide to Docker Concepts: Distroless Images, Multistage Builds, and Best Practices1. Google Distroless Images What Are Distroless Images? Distroless images are a specialized type of Docker image designed to contain only the application and its runtime dependencies, without the extra overhead of an operating system. These images ar...Discuss·1 like·28 readsdistroless image