mirror of
https://github.com/kossakovsky/n8n-install.git
synced 2026-03-07 22:33:11 +00:00
15 lines
379 B
Docker
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
|