From 0d33a2c1afb4c62b33993df2e80f5c16f8065923 Mon Sep 17 00:00:00 2001 From: goose Date: Tue, 14 Jul 2026 12:43:05 -0300 Subject: [PATCH] fix: rust:slim (not rust:latest-slim which doesn't exist) --- web/normogen-web/Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/web/normogen-web/Dockerfile b/web/normogen-web/Dockerfile index 223b23b..51dfc26 100644 --- a/web/normogen-web/Dockerfile +++ b/web/normogen-web/Dockerfile @@ -35,7 +35,7 @@ RUN cargo build --release # ============================================================================ # Stage 3: Runtime — slim image with binary + static files # ============================================================================ -FROM rust:latest-slim +FROM rust:slim RUN apt-get update && apt-get install -y --no-install-recommends \ ca-certificates \