Spaces:
Runtime error
Runtime error
File size: 240 Bytes
a733e5d b066dd9 a733e5d b066dd9 a733e5d b066dd9 caf0833 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 | FROM docker.n8n.io/n8nio/n8n:latest
USER root
# Fix permissions
RUN chown -R node:node /home/node
USER node
# Explicitly call the node executable and the n8n script
ENTRYPOINT []
CMD ["node", "/usr/local/lib/node_modules/n8n/bin/n8n"]
|