Dockerfile 5.07 KB
Newer Older
Timothy J. Baek's avatar
Timothy J. Baek committed
1
# syntax=docker/dockerfile:1
2
# Initialize device type args
Jannik Streidl's avatar
grammar  
Jannik Streidl committed
3
# use build args in the docker build commmand with --build-arg="BUILDARG=true"
4
ARG USE_CUDA=false
Jannik Streidl's avatar
Jannik Streidl committed
5
ARG USE_OLLAMA=false
6
# Tested with cu117 for CUDA 11 and cu121 for CUDA 12 (default)
Jannik Streidl's avatar
Jannik Streidl committed
7
8
9
10
ARG USE_CUDA_VER=cu121
# 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 performance and multilangauge support use "intfloat/multilingual-e5-large" (~2.5GB) or "intfloat/multilingual-e5-base" (~1.5GB)
Steven Kreitzer's avatar
Steven Kreitzer committed
11
# IMPORTANT: If you change the embedding model (sentence-transformers/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.
12
ARG USE_EMBEDDING_MODEL=sentence-transformers/all-MiniLM-L6-v2
13
ARG USE_RERANKING_MODEL=""
Timothy J. Baek's avatar
Timothy J. Baek committed
14

Jannik Streidl's avatar
Jannik Streidl committed
15
######## WebUI frontend ########
Jun Siang Cheah's avatar
Jun Siang Cheah committed
16
FROM --platform=$BUILDPLATFORM node:21-alpine3.19 as build
17

Timothy J. Baek's avatar
Timothy J. Baek committed
18
19
WORKDIR /app

Xiaodong Ye's avatar
Xiaodong Ye committed
20
COPY package.json package-lock.json ./
21
RUN npm ci
22

23
24
COPY . .
RUN npm run build
Timothy J. Baek's avatar
Timothy J. Baek committed
25

Jannik Streidl's avatar
Jannik Streidl committed
26
######## WebUI backend ########
Timothy J. Baek's avatar
Timothy J. Baek committed
27
FROM python:3.11-slim-bookworm as base
Timothy J. Baek's avatar
Timothy J. Baek committed
28

29
# Use args
30
ARG USE_CUDA
Jannik Streidl's avatar
Jannik Streidl committed
31
32
33
ARG USE_OLLAMA
ARG USE_CUDA_VER
ARG USE_EMBEDDING_MODEL
Steven Kreitzer's avatar
Steven Kreitzer committed
34
ARG USE_RERANKING_MODEL
35

Jannik Streidl's avatar
Jannik Streidl committed
36
37
## Basis ##
ENV ENV=prod \
38
    PORT=8080 \
Jannik Streidl's avatar
Jannik Streidl committed
39
    # pass build args to the build
Jannik Streidl's avatar
Jannik Streidl committed
40
41
42
    USE_OLLAMA_DOCKER=${USE_OLLAMA} \
    USE_CUDA_DOCKER=${USE_CUDA} \
    USE_CUDA_DOCKER_VER=${USE_CUDA_VER} \
Steven Kreitzer's avatar
Steven Kreitzer committed
43
44
    USE_EMBEDDING_MODEL_DOCKER=${USE_EMBEDDING_MODEL} \
    USE_RERANKING_MODEL_DOCKER=${USE_RERANKING_MODEL}
Timothy J. Baek's avatar
Timothy J. Baek committed
45

Jannik Streidl's avatar
Jannik Streidl committed
46
47
48
## Basis URL Config ##
ENV OLLAMA_BASE_URL="/ollama" \
    OPENAI_API_BASE_URL=""
Timothy J. Baek's avatar
Timothy J. Baek committed
49

Jannik Streidl's avatar
Jannik Streidl committed
50
51
52
53
54
## API Key and Security Config ##
ENV OPENAI_API_KEY="" \
    WEBUI_SECRET_KEY="" \
    SCARF_NO_ANALYTICS=true \
    DO_NOT_TRACK=true
Timothy J. Baek's avatar
Timothy J. Baek committed
55

Timothy J. Baek's avatar
Timothy J. Baek committed
56
57
58
59
60
# Use locally bundled version of the LiteLLM cost map json
# to avoid repetitive startup connections
ENV LITELLM_LOCAL_MODEL_COST_MAP="True"


Jannik Streidl's avatar
Jannik Streidl committed
61
62
#### Other models #########################################################
## whisper TTS model settings ##
Jannik Streidl's avatar
Jannik Streidl committed
63
64
ENV WHISPER_MODEL="base" \
    WHISPER_MODEL_DIR="/app/backend/data/cache/whisper/models"
65

Jannik Streidl's avatar
Jannik Streidl committed
66
67
## RAG Embedding model settings ##
ENV RAG_EMBEDDING_MODEL="$USE_EMBEDDING_MODEL_DOCKER" \
Steven Kreitzer's avatar
Steven Kreitzer committed
68
    RAG_RERANKING_MODEL="$USE_RERANKING_MODEL_DOCKER" \
Jannik Streidl's avatar
Jannik Streidl committed
69
    SENTENCE_TRANSFORMERS_HOME="/app/backend/data/cache/embedding/models"
70
71
72

## Hugging Face download cache ##
ENV HF_HOME="/app/backend/data/cache/embedding/models"
Jannik Streidl's avatar
Jannik Streidl committed
73
#### Other models ##########################################################
74

Timothy J. Baek's avatar
Timothy J. Baek committed
75
WORKDIR /app/backend
Timothy J. Baek's avatar
Timothy J. Baek committed
76

77
78
79
80
81
82
83
84
85
86
87
88
RUN if [ "$USE_OLLAMA" = "true" ]; then \
        apt-get update && \
        # Install pandoc and netcat
        apt-get install -y --no-install-recommends pandoc netcat-openbsd && \
        # for RAG OCR
        apt-get install -y --no-install-recommends ffmpeg libsm6 libxext6 && \
        # install helper tools
        apt-get install -y --no-install-recommends curl && \
        # install ollama
        curl -fsSL https://ollama.com/install.sh | sh && \
        # cleanup
        rm -rf /var/lib/apt/lists/*; \
Jannik Streidl's avatar
Jannik Streidl committed
89
    else \
90
91
92
93
94
95
96
        apt-get update && \
        # Install pandoc and netcat
        apt-get install -y --no-install-recommends pandoc netcat-openbsd && \
        # for RAG OCR
        apt-get install -y --no-install-recommends ffmpeg libsm6 libxext6 && \
        # cleanup
        rm -rf /var/lib/apt/lists/*; \
Jannik Streidl's avatar
Jannik Streidl committed
97
98
    fi

99
100
# install python dependencies
COPY ./backend/requirements.txt ./requirements.txt
101

Justin Hayes's avatar
Justin Hayes committed
102
103
RUN pip3 install uv && \
    if [ "$USE_CUDA" = "true" ]; then \
104
105
        # If you use CUDA the whisper and embedding model will be downloaded on first use
        pip3 install torch torchvision torchaudio --index-url https://download.pytorch.org/whl/$USE_CUDA_DOCKER_VER --no-cache-dir && \
Justin Hayes's avatar
Justin Hayes committed
106
        uv pip install --system -r requirements.txt --no-cache-dir && \
107
108
        python -c "import os; from sentence_transformers import SentenceTransformer; SentenceTransformer(os.environ['RAG_EMBEDDING_MODEL'], device='cpu')" && \
        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'])"; \
109
    else \
110
        pip3 install torch torchvision torchaudio --index-url https://download.pytorch.org/whl/cpu --no-cache-dir && \
Justin Hayes's avatar
Justin Hayes committed
111
        uv pip install --system -r requirements.txt --no-cache-dir && \
112
113
        python -c "import os; from sentence_transformers import SentenceTransformer; SentenceTransformer(os.environ['RAG_EMBEDDING_MODEL'], device='cpu')" && \
        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'])"; \
114
    fi
Timothy J. Baek's avatar
Timothy J. Baek committed
115

116

117

118
# copy embedding weight from build
Jannik Streidl's avatar
Jannik Streidl committed
119
120
# RUN mkdir -p /root/.cache/chroma/onnx_models/all-MiniLM-L6-v2
# COPY --from=build /app/onnx /root/.cache/chroma/onnx_models/all-MiniLM-L6-v2/onnx
121
122
123

# copy built frontend files
COPY --from=build /app/build /app/build
124
125
COPY --from=build /app/CHANGELOG.md /app/CHANGELOG.md
COPY --from=build /app/package.json /app/package.json
126
127

# copy backend files
Timothy J. Baek's avatar
Timothy J. Baek committed
128
129
COPY ./backend .

Jannik S's avatar
Jannik S committed
130
131
EXPOSE 8080

132
CMD [ "bash", "start.sh"]