feat(audio): add audio server

This commit is contained in:
2026-07-06 19:33:25 +02:00
parent 122e0fb932
commit 489d7c645b
4 changed files with 73 additions and 0 deletions
+26
View File
@@ -0,0 +1,26 @@
FROM node:18-bookworm-slim
# Install PipeWire, WirePlumber, PulseAudio compat, ALSA, and D-Bus
RUN apt-get update && apt-get install -y \
pipewire \
pipewire-pulse \
pipewire-alsa \
wireplumber \
dbus-x11 \
git \
&& rm -rf /var/lib/apt/lists/*
WORKDIR /app
# Clone and build the PipeWire Web Remote interface
RUN git clone https://github.com/oudeis01/pipewire-web-remote.git . \
&& npm install \
&& npm run build
COPY start.sh /start.sh
RUN chmod +x /start.sh
# The Web UI defaults to 8080
EXPOSE 8080
CMD ["/start.sh"]