Tagged articles
11 articles
Page 1 of 1
DevOps Coach
DevOps Coach
Mar 23, 2026 · Cloud Native

How Distroless Images Cut Rust Service Startup from 8 s to 1.2 s

After building a fast Rust microservice, the team discovered Kubernetes pods took 8‑10 seconds to start due to Alpine‑based images; switching to minimal Distroless containers and static linking reduced the image size from 40 MB to 6.7 MB, cut cold‑start time to ~1.2 seconds, lowered memory usage, and improved security.

Container OptimizationDistrolessDocker
0 likes · 8 min read
How Distroless Images Cut Rust Service Startup from 8 s to 1.2 s
Code Wrench
Code Wrench
Feb 8, 2026 · Cloud Native

How to Build Tiny, Clean, and Maintainable Docker Images for Go Services

This article shares practical experience and step‑by‑step guidance on constructing minimal, secure Go service Docker images using multi‑stage builds, scratch and distroless bases, and how to handle real‑world concerns like certificates and time zones.

Container SecurityDistrolessDocker
0 likes · 7 min read
How to Build Tiny, Clean, and Maintainable Docker Images for Go Services
Raymond Ops
Raymond Ops
Dec 25, 2025 · Operations

How to Shrink Docker Images from 600 MB to 60 MB: Proven Optimization Techniques

This guide shows how to dramatically reduce Docker image sizes—from hundreds of megabytes to just a few—by selecting lightweight base images, using multi‑stage builds, optimizing layers, leveraging .dockerignore, applying BuildKit, and automating checks, with real‑world metrics demonstrating up to 90% size cuts and faster builds.

AlpineBuildKitDistroless
0 likes · 13 min read
How to Shrink Docker Images from 600 MB to 60 MB: Proven Optimization Techniques
Ops Community
Ops Community
Nov 27, 2025 · Operations

How to Shrink a 1GB Docker Image to 50MB: 7 Proven Techniques

This guide explains why Docker image size matters for deployment speed, storage cost, and security, and walks through seven practical techniques—including multi‑stage builds, Alpine and Distroless bases, layer merging, dependency trimming, static compilation, and automated tools—to reduce a 1GB+ image to under 50 MB while preserving functionality.

AlpineDistrolessDocker
0 likes · 30 min read
How to Shrink a 1GB Docker Image to 50MB: 7 Proven Techniques
Raymond Ops
Raymond Ops
Oct 4, 2025 · Operations

6 Proven Ways to Shrink Your Docker Image Size

Learn six practical techniques—including using minimal base images, multi‑stage builds, layer minimization, cache awareness, .dockerignore files, and external data storage—to dramatically reduce Docker image size, improve build speed, and lower security risks for containerized applications.

DistrolessDockerDockerfile
0 likes · 15 min read
6 Proven Ways to Shrink Your Docker Image Size
MaGe Linux Operations
MaGe Linux Operations
Apr 25, 2025 · Operations

6 Proven Techniques to Shrink Your Docker Image Size

Learn how to dramatically reduce Docker image sizes by applying six practical optimization methods—including minimal base images, multi‑stage builds, layer minimization, caching strategies, .dockerignore usage, and external data storage—while also discovering essential tools and real‑world examples to streamline your container deployments.

DevOpsDistrolessDocker
0 likes · 14 min read
6 Proven Techniques to Shrink Your Docker Image Size
Open Source Linux
Open Source Linux
Jan 7, 2022 · Information Security

Why Your Docker Images Are Bloated and Vulnerable – A Hands‑On Scan Reveals 358 Flaws

A detailed experiment scans several Docker base images, showing how default Python images contain hundreds of vulnerabilities, while slimmer or Alpine‑based images dramatically reduce the attack surface, highlighting the security trade‑offs of image bloat and the importance of careful base‑image selection.

AlpineContainer SecurityDistroless
0 likes · 13 min read
Why Your Docker Images Are Bloated and Vulnerable – A Hands‑On Scan Reveals 358 Flaws
Open Source Linux
Open Source Linux
Aug 20, 2020 · Operations

How to Shrink Docker Images: Multi‑Stage Builds, Distroless, Alpine & Guix

This article explains why Docker images often become oversized and presents several practical techniques—manual Dockerfile edits, multi‑stage builds, Google’s distroless images, Alpine Linux bases, and GNU Guix packaging—to dramatically reduce image size while balancing debugging convenience and security.

Alpine LinuxContainer SecurityDistroless
0 likes · 8 min read
How to Shrink Docker Images: Multi‑Stage Builds, Distroless, Alpine & Guix