Fix install command
Some checks failed
Build Pipeline for de.captica.n8n / Publish Docker (push) Failing after 45s

This commit is contained in:
Marc Boehm
2025-05-20 16:58:55 +02:00
parent a4ce7477f7
commit 7bba528c8a

View File

@@ -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