fix: use correct dx bundle flag for dioxus-cli 0.7.3
Some checks failed
CI / Clippy (push) Successful in 2m20s
CI / Format (push) Successful in 6m52s
CI / Security Audit (push) Successful in 1m45s
CI / Tests (push) Successful in 2m51s
CI / Build & Push Image (push) Successful in 3m5s
CI / Changelog (push) Failing after 1m25s

--platform fullstack is not valid in 0.7.3; use --fullstack flag instead.

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
This commit is contained in:
Sharang Parnerkar
2026-02-18 14:25:34 +01:00
parent f2c54acfd5
commit 7b2041f1bf

View File

@@ -33,7 +33,7 @@ COPY . .
RUN bun install --frozen-lockfile RUN bun install --frozen-lockfile
# Bundle the fullstack application # Bundle the fullstack application
RUN dx bundle --platform fullstack RUN dx bundle --release --fullstack
# Stage 3: Minimal runtime image # Stage 3: Minimal runtime image
FROM debian:bookworm-slim AS runtime FROM debian:bookworm-slim AS runtime