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