Files
lcbp3/specs/04-Infrastructure-OPS/04-00-docker-compose/n8n-custom/Dockerfile
T
2026-03-07 17:18:20 +07:00

12 lines
360 B
Docker

FROM n8nio/n8n:latest-debian
USER root
# Fix Debian 10 Buster EOL package repositories
RUN echo "deb http://archive.debian.org/debian buster main" > /etc/apt/sources.list && \
echo "deb http://archive.debian.org/debian-security buster/updates main" >> /etc/apt/sources.list && \
apt-get update -y && \
apt-get install -y poppler-utils
USER node