File size: 427 Bytes
98d7b1e
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
FROM n8nio/n8n:latest

USER root

# Create data directories and grant ownership to node user (UID 1000)
RUN mkdir -p /home/node/.n8n /data/.n8n && \
    chown -R 1000:1000 /home/node/.n8n /data/.n8n

USER 1000

# Set default Hugging Face Spaces port and configuration
ENV N8N_PORT=7860
ENV N8N_LISTEN_ADDRESS=0.0.0.0
ENV N8N_ENFORCE_SETTINGS_FILE_PERMISSIONS=true
ENV N8N_SECURE_COOKIE=false

EXPOSE 7860

CMD ["n8n", "start"]