From 7b2041f1bfa68d0710cf146e8378a85c84174fcd Mon Sep 17 00:00:00 2001 From: Sharang Parnerkar Date: Wed, 18 Feb 2026 14:25:34 +0100 Subject: [PATCH] fix: use correct dx bundle flag for dioxus-cli 0.7.3 --platform fullstack is not valid in 0.7.3; use --fullstack flag instead. Co-Authored-By: Claude Opus 4.6 --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 442414c..94416e7 100644 --- a/Dockerfile +++ b/Dockerfile @@ -33,7 +33,7 @@ COPY . . RUN bun install --frozen-lockfile # Bundle the fullstack application -RUN dx bundle --platform fullstack +RUN dx bundle --release --fullstack # Stage 3: Minimal runtime image FROM debian:bookworm-slim AS runtime