Files
n8n-install/n8n/Dockerfile
Yury Kossakovsky a5dc3401e4 Refactor Dockerfile to use Alpine package manager for ffmpeg installation
- Changed the installation method for ffmpeg from apt-get to apk to optimize the Docker image size and improve build efficiency.
2025-07-29 14:16:56 -06:00

5 lines
73 B
Docker

FROM n8nio/n8n:latest
USER root
RUN apk add --no-cache ffmpeg
USER node