diff --git a/Dockerfile b/Dockerfile index 41c9970..28d0b56 100644 --- a/Dockerfile +++ b/Dockerfile @@ -46,7 +46,7 @@ RUN --mount=type=ssh \ # Stage 2: Create the final, smaller runtime image # Use a minimal base image like debian-slim or even distroless for security/size -FROM ubuntu:24.04 +FROM debian:trixie-slim # Install runtime dependencies if needed (e.g., SSL certificates) RUN apt-get update && apt-get install -y ca-certificates libssl-dev libssl3 && rm -rf /var/lib/apt/lists/*