mirror of
https://github.com/mudler/LocalAI
synced 2026-04-29 17:27:17 +00:00
6 lines
140 B
Text
6 lines
140 B
Text
|
|
FROM node:latest
|
||
|
|
COPY ./langchainjs-localai-example /app
|
||
|
|
WORKDIR /app
|
||
|
|
RUN npm install
|
||
|
|
RUN npm run build
|
||
|
|
ENTRYPOINT [ "npm", "run", "start" ]
|