From ae8dd1db0b2b2995e7df616342d4bf86747f1d9c Mon Sep 17 00:00:00 2001 From: Dorian Zedler Date: Thu, 16 Feb 2023 21:42:53 +0100 Subject: [PATCH] Fix: install gcc-multilib --- Dockerfile | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 18af6fb..4ee6bda 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,3 +1,5 @@ FROM rust:1.67 -RUN curl https://rustwasm.github.io/wasm-pack/installer/init.sh -sSf | sh \ No newline at end of file +RUN apt update && \ + sudo apt install gcc-multilib && \ + curl https://rustwasm.github.io/wasm-pack/installer/init.sh -sSf | sh \ No newline at end of file