Files
n8n_ollama/Containerfile

9 lines
289 B
Docker
Raw Normal View History

2026-03-01 16:55:19 +01:00
FROM n8nio/n8n:latest
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
USER node