n8n / Dockerfile
SiddhJagani's picture
Update Dockerfile
b034994 verified
raw
history blame contribute delete
314 Bytes
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"]