build: migrate to Dioxus 0.6

This commit is contained in:
2024-12-12 18:23:02 +01:00
parent f56a85277a
commit a3708198ce
25 changed files with 3193 additions and 960 deletions

View File

@ -1,4 +1,4 @@
FROM rust:1.80-bookworm
FROM rust:1.83-bookworm
RUN rustup target add wasm32-unknown-unknown && \
cargo install dioxus-cli diesel_cli && \
@ -16,7 +16,7 @@ RUN chown -R 1000:1000 /srv/app && \
mkdir -p /.local/share/dioxus && \
chown -R 1000:1000 /.local/share/dioxus
HEALTHCHECK CMD curl --fail http://localhost:8000 || exit 1
HEALTHCHECK CMD curl --fail -H "Accept: text/html" http://localhost:8000 || exit 1
USER 1000:1000