Dockerfile: runner: we need to use debian (gnueabi) instead of alpine (musl)
This commit is contained in:
@@ -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
|
||||
|
||||
|
||||
Reference in New Issue
Block a user