From de79efafa61dcb8a237a89b1eecf870309603e46 Mon Sep 17 00:00:00 2001 From: GlassedSilver Date: Sun, 17 Apr 2022 23:46:08 +0200 Subject: [PATCH] try to fix ffmpeg install from edge --- Dockerfile | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/Dockerfile b/Dockerfile index eb36428..28d3d47 100644 --- a/Dockerfile +++ b/Dockerfile @@ -25,15 +25,16 @@ ENV NO_UPDATE_NOTIFIER=true RUN addgroup -S $USER -g $GID && adduser -D -S $USER -G $USER -u $UID +RUN apk -UvX http://dl-cdn.alpinelinux.org/alpine/edge/community/ add -u\ + ffmpeg + RUN apk add --no-cache \ npm \ python2 \ python3 \ su-exec \ && apk add --no-cache --repository http://dl-cdn.alpinelinux.org/alpine/edge/testing/ \ - atomicparsley \ - && apk add --no-cache --repository http://dl-cdn.alpinelinux.org/alpine/edge/community/ \ - ffmpeg + atomicparsley WORKDIR /app COPY --chown=$UID:$GID [ "backend/package.json", "backend/package-lock.json", "/app/" ]