From 297fab5eb8705598714c15eeace390e008d4317c Mon Sep 17 00:00:00 2001 From: Marc Boehm Date: Tue, 20 May 2025 17:22:38 +0200 Subject: [PATCH] Add missing node --- Dockerfile | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/Dockerfile b/Dockerfile index f056944..e265bbd 100644 --- a/Dockerfile +++ b/Dockerfile @@ -22,9 +22,11 @@ USER root # it needs to build it correctly. RUN N8N_VERSION=$(curl -s https://api.github.com/repos/n8n-io/n8n/releases/latest | jq -r '.tag_name' | sed 's/^v//') && \ echo "Latest n8n version: ${N8N_VERSION}" && \ - npm_config_user=root npm install -g ${N8N_VERSION} && \ + npm_config_user=root npm install -g \ + ${N8N_VERSION} \ + n8n-nodes-imap && \ apt-get clean all - + WORKDIR /data CMD ["n8n"] \ No newline at end of file