mirror of
https://github.com/kossakovsky/n8n-install.git
synced 2026-04-28 10:41:40 +00:00
10 lines
330 B
Docker
10 lines
330 B
Docker
FROM n8nio/n8n:stable
|
|
|
|
USER root
|
|
# Install static ffmpeg binary (no package manager needed)
|
|
RUN wget -qO- https://johnvansickle.com/ffmpeg/releases/ffmpeg-release-amd64-static.tar.xz | \
|
|
tar -xJC /tmp && \
|
|
mv /tmp/ffmpeg-*-static/ffmpeg /tmp/ffmpeg-*-static/ffprobe /usr/local/bin/ && \
|
|
rm -rf /tmp/ffmpeg-*
|
|
USER node
|