File size: 587 Bytes
7ccb4d7
c54dca4
4228f5f
 
 
 
c54dca4
 
 
 
d37ef7d
7ccb4d7
 
 
 
c25219e
7ccb4d7
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
FROM node:20

ENV YJS_ENV=REMOTE
ENV YJS_LOCAL_URL="ws://localhost:1234"
ENV YJS_LOCAL_URL_DOCKER="ws://market:1234"
ENV YJS_REMOTE_URL="wss://ylm-websocket.glitch.me/"
ENV YJS_MARKET_ROOM="market"
ENV LLM_MODEL_NAME="dolphin-2.2.1-mistral-7b.Q2_K.gguf"


RUN git clone https://github.com/scenaristeur/igora /app
WORKDIR /app
COPY . /app
RUN npm install
RUN npm run fix
RUN npx ipull -s ./models https://huggingface.co/TheBloke/dolphin-2.2.1-mistral-7B-GGUF/resolve/main/dolphin-2.2.1-mistral-7b.Q2_K.gguf
#COPY . /app
# RUN npm install
# RUN npm run fix
CMD npm run start_backend_docker