From f67702607250861dbe28c44701016286c3acde45 Mon Sep 17 00:00:00 2001 From: James Magahern Date: Fri, 21 Feb 2025 21:55:39 -0800 Subject: [PATCH] Dockerfile: runner: we need to use debian (gnueabi) instead of alpine (musl) --- Dockerfile | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/Dockerfile b/Dockerfile index 232db4c..b435b33 100644 --- a/Dockerfile +++ b/Dockerfile @@ -18,9 +18,11 @@ COPY . . RUN npm run build # Production stage -FROM --platform=$TARGETPLATFORM alpine:edge +FROM --platform=$TARGETPLATFORM debian:testing-20250203 -RUN apk update && apk add mpv npm yt-dlp pulseaudio pulseaudio-utils +RUN apt-get update && apt-get install -y \ + mpv npm yt-dlp pulseaudio pulseaudio-utils \ + && rm -rf /var/lib/apt/lists/* WORKDIR /app