From fb54522bcec4e7de3b947a900adfe75bf02a4432 Mon Sep 17 00:00:00 2001 From: 4NK CI Bot Date: Thu, 18 Sep 2025 10:50:14 +0000 Subject: [PATCH] ci: docker_tag=ext | rust 1.82 + wasm-bindgen-cli 0.2.92 --locked (cargo+bindgen) --- Dockerfile | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/Dockerfile b/Dockerfile index b0a5a00..25f0ee5 100755 --- a/Dockerfile +++ b/Dockerfile @@ -1,5 +1,5 @@ # syntax=docker/dockerfile:1.4 -FROM rust:1.73-alpine AS wasm-builder +FROM rust:1.82-alpine AS wasm-builder WORKDIR /build # Installation des dépendances nécessaires pour la compilation @@ -16,8 +16,8 @@ RUN apk update && apk add --no-cache \ musl-dev \ nginx -# Installer wasm-bindgen CLI compatible et target wasm32 -RUN cargo install wasm-bindgen-cli --version 0.2.92 && \ +# Installer wasm-bindgen CLI (0.2.92) et target wasm32 (Rust >=1.81) +RUN cargo install wasm-bindgen-cli --version 0.2.92 --locked && \ rustup target add wasm32-unknown-unknown # Configuration SSH basique