Files
n8n-install/n8n/Dockerfile.runner
2025-12-11 11:39:01 -07:00

15 lines
379 B
Docker

ARG N8N_VERSION=stable
FROM n8nio/runners:${N8N_VERSION}
USER root
# Install npm packages that can be used in Code nodes
# These must match NODE_FUNCTION_ALLOW_EXTERNAL in n8n-task-runners.json
# Note: n8nio/runners uses pnpm, not npm
RUN pnpm add cheerio axios moment lodash
# Copy task runner configuration
COPY n8n-task-runners.json /etc/n8n-task-runners.json
USER runner