Install Curl app for use via “Execute Command”

In this case you have to build your own docker image. But you can base it on the existing n8n one. For that reason would it be very simple.

So you create a file named “Dockerfile” with this content:

FROM n8nio/n8n

RUN apk --update add curl

In the same folder you execute then this command:

docker build -t n8n-curl .

Now you can replace the docker image you used before (like n8nio/n8n) with n8n-curl. You will then be able to execute curl via the Execute Command-Node.

1 Like