generated from Templates/Docker_Image
9 lines
289 B
Docker
9 lines
289 B
Docker
FROM n8nio/n8n:latest
|
|
USER root
|
|
|
|
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
|
|
|
|
USER node |