From 8652d56f515cb9ea69a457258e93c2501e65d485 Mon Sep 17 00:00:00 2001 From: Adrien Date: Wed, 25 Sep 2024 00:11:12 +0200 Subject: [PATCH] =?UTF-8?q?=F0=9F=90=9B=20Fix=20wasm-bindgen-cli=20version?= =?UTF-8?q?=20in=20Dockerfile?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- Dockerfile | 3 +++ 1 file changed, 3 insertions(+) diff --git a/Dockerfile b/Dockerfile index 94e63da..987950e 100644 --- a/Dockerfile +++ b/Dockerfile @@ -13,6 +13,9 @@ WORKDIR /usr/src/beau-gosse-du-92 RUN apt update \ && apt install -y git-lfs +RUN rustup target add wasm32-unknown-unknown \ + && cargo install -f wasm-bindgen-cli --version 0.2.93 + COPY . . RUN /usr/local/bin/dx build -r --platform web -- -j ${JOBS_NB}