2026-03-01 16:55:19 +01:00
|
|
|
FROM n8nio/n8n:latest
|
2026-03-01 16:36:26 +01:00
|
|
|
USER root
|
2026-03-01 07:25:37 -08:00
|
|
|
|
2026-03-01 16:55:19 +01:00
|
|
|
RUN mkdir -p /opt/extra
|
|
|
|
|
RUN npm --prefix /opt/extra install @langchain/ollama@1.0.3
|
|
|
|
|
RUN cp /opt/extra/node_modules/@langchain/ollama/dist/utils.* $(dirname $(find /usr/local/lib/ -name utils.js | grep ollama))
|
|
|
|
|
RUN chown -R node:node /opt/extra
|
2026-03-01 07:25:37 -08:00
|
|
|
|
2026-03-01 16:36:26 +01:00
|
|
|
USER node
|