From ba5183b30db65a4c84e091be22709bb3aa612884 Mon Sep 17 00:00:00 2001 From: Robert Garrett Date: Sat, 8 Nov 2025 10:59:30 -0600 Subject: [PATCH] Remove bogus dependencies from build container These are only required for Linux builds, not WASM/WASI builds. --- Dockerfile | 1 - 1 file changed, 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 54329ad7..f1aca19b 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,7 +1,6 @@ FROM rust:1.89 AS builder RUN apt-get update -RUN apt-get install -y --no-install-recommends libasound2-dev libudev-dev RUN rustup target add wasm32-unknown-unknown RUN cargo install --locked wasm-bindgen-cli