diff --git a/Dockerfile.n8n b/Dockerfile.n8n index 819cba2..ba14678 100644 --- a/Dockerfile.n8n +++ b/Dockerfile.n8n @@ -7,10 +7,10 @@ ARG SHOWDOWN_VERSION=^2.1.0 ARG SLACKIFY_MARKDOWN_VERSION=^4.5.0 ARG TIKTOKEN_VERSION=^1.0.21 -# Install git for backup script and other packages + install external packages in one layer +# Install git (backup scripts) and ffmpeg (media processing) + external npm packages in one layer USER root RUN set -eux; \ - apk add --no-cache git=2.49.1-r0 && \ + apk add --no-cache git=2.49.1-r0 ffmpeg=6.1.2-r2 && \ npm install -g --no-audit --no-fund --ignore-scripts \ --legacy-peer-deps --no-workspaces \ --unsafe-perm \