mirror of
https://github.com/kossakovsky/n8n-install.git
synced 2026-05-01 20:16:18 +00:00
10 lines
419 B
Docker
10 lines
419 B
Docker
FROM n8nio/n8n:stable
|
|
|
|
USER root
|
|
# Install static ffmpeg binary from BtbN GitHub releases
|
|
RUN wget -qO- --tries=3 --timeout=60 https://github.com/BtbN/FFmpeg-Builds/releases/download/latest/ffmpeg-master-latest-linux64-gpl.tar.xz | \
|
|
tar -xJC /tmp && \
|
|
mv /tmp/ffmpeg-master-latest-linux64-gpl/bin/ffmpeg /tmp/ffmpeg-master-latest-linux64-gpl/bin/ffprobe /usr/local/bin/ && \
|
|
rm -rf /tmp/ffmpeg-*
|
|
USER node
|