2023-10-08 15:38:42 -07:00
# syntax=docker/dockerfile:1
2024-01-04 21:15:13 -08:00
FROM node:alpine as build
2023-10-21 16:14:12 -07:00
2023-11-14 16:28:51 -08:00
WORKDIR /app
2024-01-07 20:50:09 -08:00
# wget embedding model weight from alpine (does not exist from slim-buster)
2024-01-25 18:08:35 +08:00
RUN wget "https://chroma-onnx-models.s3.amazonaws.com/all-MiniLM-L6-v2/onnx.tar.gz" -O - | \
tar -xzf - -C /app
2024-01-07 20:50:09 -08:00
2024-01-25 18:08:35 +08:00
COPY package.json package-lock.json ./
2024-01-04 21:15:13 -08:00
RUN npm ci
2024-01-04 20:32:51 -08:00
2024-01-04 21:15:13 -08:00
COPY . .
RUN npm run build
2023-10-08 15:38:42 -07:00
2024-01-07 20:50:09 -08:00
2024-01-07 08:28:35 -08:00
FROM python:3.11-slim-bookworm as base
2023-11-14 16:28:51 -08:00
ENV ENV = prod
2024-01-12 19:38:30 -08:00
ENV PORT ""
2024-01-05 17:16:35 -08:00
ENV OLLAMA_API_BASE_URL "/ollama/api"
2024-01-04 18:55:15 -08:00
ENV OPENAI_API_BASE_URL ""
ENV OPENAI_API_KEY ""
2024-02-01 13:40:59 -06:00
ENV WEBUI_SECRET_KEY ""
2023-11-14 16:28:51 -08:00
2024-02-09 18:11:01 -08:00
ENV SCARF_NO_ANALYTICS true
ENV DO_NOT_TRACK true
2024-02-17 19:38:29 +01:00
# whisper TTS Settings
2024-02-13 15:11:53 +01:00
ENV WHISPER_MODEL = "base"
2024-02-14 23:32:54 -08:00
ENV WHISPER_MODEL_DIR = "/app/backend/data/cache/whisper/models"
2024-02-13 15:11:53 +01:00
2024-02-17 19:38:29 +01:00
# any sentence transformer model; models to use can be found at https://huggingface.co/models?library=sentence-transformers
# Leaderboard: https://huggingface.co/spaces/mteb/leaderboard
# for better persormance and multilangauge support use "intfloat/multilingual-e5-large"
# IMPORTANT: If you change the default model (all-MiniLM-L6-v2) and vice versa, you aren't able to use RAG Chat with your previous documents loaded in the WebUI! You need to re-embed them.
ENV DOCKER_SENTENCE_TRANSFORMER_EMBED_MODEL = "all-MiniLM-L6-v2"
2023-11-14 16:28:51 -08:00
WORKDIR /app/backend
2024-01-23 07:48:27 -05:00
# install python dependencies
2023-11-14 16:28:51 -08:00
COPY ./backend/requirements.txt ./requirements.txt
2024-01-07 21:22:37 -08:00
2024-01-12 18:03:02 -04:00
RUN pip3 install torch torchvision torchaudio --index-url https://download.pytorch.org/whl/cpu --no-cache-dir
RUN pip3 install -r requirements.txt --no-cache-dir
2024-01-07 20:21:32 -08:00
2024-01-26 13:57:35 -06:00
# Install pandoc and netcat
2024-01-22 23:11:50 -08:00
# RUN python -c "import pypandoc; pypandoc.download_pandoc()"
RUN apt-get update \
2024-01-26 13:57:35 -06:00
&& apt-get install -y pandoc netcat-openbsd \
2024-01-22 23:11:50 -08:00
&& rm -rf /var/lib/apt/lists/*
2024-02-17 19:38:29 +01:00
# preload embedding model
RUN python -c "import os; from chromadb.utils import embedding_functions; sentence_transformer_ef = embedding_functions.SentenceTransformerEmbeddingFunction(model_name=os.environ['DOCKER_SENTENCE_TRANSFORMER_EMBED_MODEL'])"
# preload tts model
2024-02-14 23:32:54 -08:00
RUN python -c "import os; from faster_whisper import WhisperModel; WhisperModel(os.environ['WHISPER_MODEL'], device='cpu', compute_type='int8', download_root=os.environ['WHISPER_MODEL_DIR'])"
2024-02-13 15:11:53 +01:00
2023-11-14 16:28:51 -08:00
2024-01-23 07:48:27 -05:00
# copy embedding weight from build
RUN mkdir -p /root/.cache/chroma/onnx_models/all-MiniLM-L6-v2
2024-01-25 18:08:35 +08:00
COPY --from= build /app/onnx /root/.cache/chroma/onnx_models/all-MiniLM-L6-v2/onnx
2024-01-23 07:48:27 -05:00
# copy built frontend files
COPY --from= build /app/build /app/build
# copy backend files
2023-11-14 16:28:51 -08:00
COPY ./backend .
2024-01-29 16:24:16 -08:00
CMD [ "bash" , "start.sh" ]