Dockerfile: runner: we need to use debian (gnueabi) instead of alpine (musl)

This commit is contained in:
2025-02-21 21:55:39 -08:00
parent 5197c78897
commit f677026072

View File

@@ -18,9 +18,11 @@ COPY . .
RUN npm run build RUN npm run build
# Production stage # 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 WORKDIR /app