n8n / Dockerfile
testdeep123's picture
Update Dockerfile
a400f51 verified
raw
history blame contribute delete
258 Bytes
FROM node:18
# Set working directory
WORKDIR /app
# Install n8n
RUN npm install -g n8n
# Environment variables
ENV DB_TYPE=sqlite
ENV N8N_HOST=0.0.0.0
ENV N8N_PORT=7860
# Expose the default port for Hugging Face Spaces
EXPOSE 7860
# Run n8n
CMD ["n8n"]