From c9e37b2dced119b7f9bd0dac057dbad3837897a0 Mon Sep 17 00:00:00 2001 From: Tobias Lehmann Date: Tue, 24 Mar 2026 22:27:23 +0100 Subject: [PATCH] Dockerfile aktualisiert rollback to 2.11.3 --- Dockerfile | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 543d5fa..79df24d 100644 --- a/Dockerfile +++ b/Dockerfile @@ -19,7 +19,8 @@ RUN apt-get update -y && \ # Install n8n and the also temporary all the packages # 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//') && \ +#RUN N8N_VERSION=$(curl -s https://api.github.com/repos/n8n-io/n8n/releases/latest | jq -r '.tag_name' | sed 's/^v//') && \ +RUN N8N_VERSION=2.11.3 && \ echo "Latest n8n version: ${N8N_VERSION}" && \ npm_config_user=root npm install -g \ ${N8N_VERSION} && \