OrewaLuffy123 commited on
Commit
cd233a5
·
verified ·
1 Parent(s): 5399ebe

Dockerfile

Browse files

# Use the official n8n image as the base
FROM n8nio/n8n:latest

# Force n8n to use Port 7860 (The only port Hugging Face opens)
ENV N8N_PORT=7860
ENV N8N_HOST=0.0.0.0
ENV N8N_LISTEN_ADDRESS=0.0.0.0

# Expose the port for the web interface
EXPOSE 7860

# Command to launch the sniper
CMD ["n8n"]

Files changed (1) hide show
  1. Dockerfile +4 -0
Dockerfile ADDED
@@ -0,0 +1,4 @@
 
 
 
 
 
1
+ FROM n8nio/n8n:latest
2
+ ENV N8N_PORT=7860
3
+ EXPOSE 7860
4
+ CMD ["n8n"]