From 84d93d496a7a51a21748f385198ecf1d6b7cfc7a Mon Sep 17 00:00:00 2001 From: Robert Garrett Date: Sat, 8 Nov 2025 12:10:42 -0600 Subject: [PATCH] Remove Linux-specific deps from web build The Alsa and Udev system dependencies are only required on Linux. The WASM/WASI build doesn't use them, so they don't need to exist in the build container. --- Dockerfile | 2 -- 1 file changed, 2 deletions(-) diff --git a/Dockerfile b/Dockerfile index 54329ad..b73637d 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,7 +1,5 @@ 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