n8n-server / Dockerfile
zahidjavali's picture
Update Dockerfile
caf0833 verified
Raw
History Blame Contribute Delete
240 Bytes
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"]