Spaces:
Runtime error
Runtime error
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"]
- 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"]
|