feat(docker): optimize image size via multi-stage Bookworm build#149
Open
abstract-333 wants to merge 6 commits intonasa:masterfrom
Open
feat(docker): optimize image size via multi-stage Bookworm build#149abstract-333 wants to merge 6 commits intonasa:masterfrom
abstract-333 wants to merge 6 commits intonasa:masterfrom
Conversation
…ookworm build - Implements multi-stage build to exclude build tools - Maintains Debian Trixie base for glibc compatibility (Pillow support) - Adds non-root user for security (referenced from nasa#146) - Integrates uv with Docker cache mounts for faster builds
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary
This PR optimizes the Docker configuration for the
apod-api. It introduces a multi-stage build process and standardizes the base image to Debian Bookworm, reducing the final image size by 55%.🛠 Key Changes
1. Base Image Standardization (Bookworm-slim)
I have transitioned the base image from Debian Trixie to
python:3.12.10-slim-bookworm.glibccompatibility for image-processing libraries likePillow.2. Multi-Stage Build Implementation
Implemented a two-stage build process to separate the "Builder" environment from the "Runtime" environment:
uvand compiles the virtual environment. It utilizes Docker cache mounts and bind mounts to speed up dependency installation without bloating the image..venv. This strips away build tools,uvbinaries, and package caches.3. Security Hardening
nonroot) with UID 1000 to run the application.📊 Metrics & Comparison
✅ Validation
Pillow,Flask, andGunicornfunction correctly on the Bookworm base.