Spaces:
Running
Running
File size: 539 Bytes
dac6128 ca72eea a134f47 dac6128 93ca5ad dac6128 3c7f52e 93ca5ad dac6128 5aa5319 8309ba3 dac6128 a134f47 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 | # Use a specific stable version for reproducibility
# As of the docs, current latest = 1.113.3
FROM n8nio/n8n
# Set timezone — both TZ and GENERIC_TIMEZONE are required for full effect
# Default in n8n is America/New_York; change if needed (e.g., UTC, Asia/Shanghai)
ENV TZ=UTC
ENV GENERIC_TIMEZONE=UTC
# Enable recommended features
ENV N8N_ENFORCE_SETTINGS_FILE_PERMISSIONS=true
ENV N8N_RUNNERS_ENABLED=true
# Force n8n to use port 7860 (required by Hugging Face Spaces)
ENV N8N_PORT=7860
# Expose the only allowed port
EXPOSE 7860
|