Tag: #dockerfile
Writing on GPUs, LLMs, MLOps, Kubernetes — and mindset · 5 posts
Shrinking Docker Images — The Truth About Layers, Multi-Stage Builds, and What a Base Image Really Costs
Start by pinpointing, layer by layer with dive, exactly where a Docker image balloons to 1.9GB. This piece covers why the union filesystem makes RUN rm incapable of removing a single byte from an image, exactly what a mu
2026-07-26 · 12 min read #docker#dockerfile#multi-stage-build#container#devopsMistakes That Keep Repeating in Dockerfiles — Running as root, PID 1, and Secrets Left in the Image
Works through the Dockerfile problems that pass the build and only blow up in production, starting from their causes. Containers running as root because no USER was set, the latest tag and reproducibility, why ADD should
2026-07-26 · 12 min read #docker#dockerfile#container-security#pid1#devopsDocker BuildKit & Image Layers Complete Guide 2025: LLB, Cache Mount, Multi-Stage, OCI, Build Optimization Deep Dive
Why is the same Dockerfile 10x faster with BuildKit? Image layer structure, BuildKit LLB, cache mount, multi-stage builds, OCI format, reproducible builds — a complete 720-line analysis of everything about modern contain
2026-04-15 · 26 min read #docker#buildkit#oci#image-layer#cache-mountDocker Complete Guide 2025: From Container Basics to Multi-stage Builds, Compose, and Production Deployment
From container internals (namespaces, cgroups) to Dockerfile optimization, 90% image size reduction with multi-stage builds, Docker Compose in practice, security best practices, and CI/CD pipelines — a complete Docker gu
2026-03-22 · 21 min read #docker#container#devops#dockerfile#docker-composeThe Complete Guide to Docker & Podman Commands: Container Operations, All on One Page
From the architectural differences between Docker and Podman to image management, the container lifecycle, networking, volumes, Docker Compose vs Podman Compose, security (rootless), multi-stage builds, and debugging — a
2026-03-01 · 52 min read #docker#podman#container#devops#kubernetes