From 7bba528c8a1954529d0c95bbd26b335595e32870 Mon Sep 17 00:00:00 2001 From: Marc Boehm Date: Tue, 20 May 2025 16:58:55 +0200 Subject: [PATCH] Fix install command --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 8e0ca24..1b4a17b 100644 --- a/Dockerfile +++ b/Dockerfile @@ -23,7 +23,7 @@ USER captica # 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} && \ apt-get clean all