fix: Adding this back as it's still needed for darwin builds locally (#16720)

This commit is contained in:
shortstacked
2025-06-26 10:43:11 +01:00
committed by GitHub
parent a7e9cc0896
commit 719a17427e

View File

@@ -56,7 +56,9 @@ COPY --from=launcher-downloader /launcher-bin/* /usr/local/bin/
COPY docker/images/n8n/docker-entrypoint.sh /
COPY docker/images/n8n/n8n-task-runners.json /etc/n8n-task-runners.json
RUN ln -s /usr/local/lib/node_modules/n8n/bin/n8n /usr/local/bin/n8n && \
RUN cd /usr/local/lib/node_modules/n8n && \
npm rebuild sqlite3 && \
ln -s /usr/local/lib/node_modules/n8n/bin/n8n /usr/local/bin/n8n && \
mkdir -p /home/node/.n8n && \
chown -R node:node /home/node