n8n / Dockerfile
errordrive's picture
Update Dockerfile
a7bf88e verified
Raw
History Blame Contribute Delete
239 Bytes
FROM docker.n8n.io/n8nio/n8n:latest
USER root
RUN mkdir -p /home/node/.n8n && chown -R node:node /home/node/.n8n
USER node
ENV N8N_HOST=0.0.0.0
ENV N8N_PORT=7860
ENV N8N_PROTOCOL=https
ENV NODE_ENV=production
EXPOSE 7860
CMD ["start"]