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