From ccbbcd4274b4c62e242506e22e0c857064bdec6a Mon Sep 17 00:00:00 2001 From: goose Date: Tue, 14 Jul 2026 12:27:55 -0300 Subject: [PATCH] fix: use rust:latest-slim as runtime (glibc match) --- web/normogen-web/Dockerfile | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/web/normogen-web/Dockerfile b/web/normogen-web/Dockerfile index a456606..223b23b 100644 --- a/web/normogen-web/Dockerfile +++ b/web/normogen-web/Dockerfile @@ -35,11 +35,12 @@ RUN cargo build --release # ============================================================================ # Stage 3: Runtime — slim image with binary + static files # ============================================================================ -FROM debian:bookworm-slim +FROM rust:latest-slim RUN apt-get update && apt-get install -y --no-install-recommends \ ca-certificates \ curl \ + libssl3 \ && rm -rf /var/lib/apt/lists/* WORKDIR /app