Spaces:
Running
Running
| FROM node:24-alpine | |
| RUN apk add --no-cache bash sqlite git curl unzip openssl | |
| RUN npm install -g n8n@latest | |
| WORKDIR /workspace | |
| COPY start.sh /workspace/start.sh | |
| RUN chmod +x /workspace/start.sh && mkdir -p /workspace/data | |
| # postBuild | |
| RUN chmod -R 777 /workspace/data | |
| EXPOSE 7860 | |
| CMD ["/workspace/start.sh"] | |