Dockerfile 6.02 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=""
14
ARG BUILD_HASH=dev-build
15
16
17
# Override at your own risk - non-root configurations are untested
ARG UID=0
ARG GID=0
Timothy J. Baek's avatar
Timothy J. Baek committed
18

Jannik Streidl's avatar
Jannik Streidl committed
19
######## WebUI frontend ########
Jun Siang Cheah's avatar
Jun Siang Cheah committed
20
FROM --platform=$BUILDPLATFORM node:21-alpine3.19 as build
21
ARG BUILD_HASH
22

Timothy J. Baek's avatar
Timothy J. Baek committed
23
24
WORKDIR /app

Xiaodong Ye's avatar
Xiaodong Ye committed
25
COPY package.json package-lock.json ./
26
RUN npm ci
27

28
COPY . .
29
ENV APP_BUILD_HASH=${BUILD_HASH}
30
RUN npm run build
Timothy J. Baek's avatar
Timothy J. Baek committed
31

Jannik Streidl's avatar
Jannik Streidl committed
32
######## WebUI backend ########
Timothy J. Baek's avatar
Timothy J. Baek committed
33
FROM python:3.11-slim-bookworm as base
Timothy J. Baek's avatar
Timothy J. Baek committed
34

35
# Use args
36
ARG USE_CUDA
Jannik Streidl's avatar
Jannik Streidl committed
37
38
39
ARG USE_OLLAMA
ARG USE_CUDA_VER
ARG USE_EMBEDDING_MODEL
Steven Kreitzer's avatar
Steven Kreitzer committed
40
ARG USE_RERANKING_MODEL
Jan-Timo Hesse's avatar
Jan-Timo Hesse committed
41
ARG EXTRA_MODULES
42
43
ARG UID
ARG GID
44

Jannik Streidl's avatar
Jannik Streidl committed
45
46
## Basis ##
ENV ENV=prod \
47
    PORT=8080 \
Jannik Streidl's avatar
Jannik Streidl committed
48
    # pass build args to the build
Jannik Streidl's avatar
Jannik Streidl committed
49
50
51
    USE_OLLAMA_DOCKER=${USE_OLLAMA} \
    USE_CUDA_DOCKER=${USE_CUDA} \
    USE_CUDA_DOCKER_VER=${USE_CUDA_VER} \
Steven Kreitzer's avatar
Steven Kreitzer committed
52
    USE_EMBEDDING_MODEL_DOCKER=${USE_EMBEDDING_MODEL} \
Jan-Timo Hesse's avatar
Jan-Timo Hesse committed
53
54
    USE_RERANKING_MODEL_DOCKER=${USE_RERANKING_MODEL} \
    EXTRA_MODULES_DOCKER=${EXTRA_MODULES}
Timothy J. Baek's avatar
Timothy J. Baek committed
55

Jannik Streidl's avatar
Jannik Streidl committed
56
57
58
## Basis URL Config ##
ENV OLLAMA_BASE_URL="/ollama" \
    OPENAI_API_BASE_URL=""
Timothy J. Baek's avatar
Timothy J. Baek committed
59

Jannik Streidl's avatar
Jannik Streidl committed
60
61
62
63
## API Key and Security Config ##
ENV OPENAI_API_KEY="" \
    WEBUI_SECRET_KEY="" \
    SCARF_NO_ANALYTICS=true \
64
65
    DO_NOT_TRACK=true \
    ANONYMIZED_TELEMETRY=false
Timothy J. Baek's avatar
Timothy J. Baek committed
66

Jannik Streidl's avatar
Jannik Streidl committed
67
68
#### Other models #########################################################
## whisper TTS model settings ##
Jannik Streidl's avatar
Jannik Streidl committed
69
70
ENV WHISPER_MODEL="base" \
    WHISPER_MODEL_DIR="/app/backend/data/cache/whisper/models"
71

Jannik Streidl's avatar
Jannik Streidl committed
72
73
## RAG Embedding model settings ##
ENV RAG_EMBEDDING_MODEL="$USE_EMBEDDING_MODEL_DOCKER" \
Steven Kreitzer's avatar
Steven Kreitzer committed
74
    RAG_RERANKING_MODEL="$USE_RERANKING_MODEL_DOCKER" \
Jannik Streidl's avatar
Jannik Streidl committed
75
    SENTENCE_TRANSFORMERS_HOME="/app/backend/data/cache/embedding/models"
76
77
78

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

Timothy J. Baek's avatar
Timothy J. Baek committed
81
WORKDIR /app/backend
Timothy J. Baek's avatar
Timothy J. Baek committed
82

83
ENV HOME /root
84
85
# Create user and group if not root
RUN if [ $UID -ne 0 ]; then \
Timothy J. Baek's avatar
Timothy J. Baek committed
86
87
88
89
    if [ $GID -ne 0 ]; then \
    addgroup --gid $GID app; \
    fi; \
    adduser --uid $UID --gid $GID --home $HOME --disabled-password --no-create-home app; \
90
91
    fi

92
93
94
RUN mkdir -p $HOME/.cache/chroma
RUN echo -n 00000000-0000-0000-0000-000000000000 > $HOME/.cache/chroma/telemetry_user_id

95
96
97
# Make sure the user has access to the app and root directory
RUN chown -R $UID:$GID /app $HOME

98
RUN if [ "$USE_OLLAMA" = "true" ]; then \
Timothy J. Baek's avatar
Timothy J. Baek committed
99
    apt-get update && \
Timothy J. Baek's avatar
Timothy J. Baek committed
100
101
102
    # Install pandoc and netcat
    apt-get install -y --no-install-recommends pandoc netcat-openbsd curl && \
    apt-get install -y --no-install-recommends gcc python3-dev && \
Timothy J. Baek's avatar
Timothy J. Baek committed
103
104
105
    # for RAG OCR
    apt-get install -y --no-install-recommends ffmpeg libsm6 libxext6 && \
    # install helper tools
Timothy J. Baek's avatar
Timothy J. Baek committed
106
    apt-get install -y --no-install-recommends curl jq && \
Timothy J. Baek's avatar
Timothy J. Baek committed
107
108
109
110
    # install ollama
    curl -fsSL https://ollama.com/install.sh | sh && \
    # cleanup
    rm -rf /var/lib/apt/lists/*; \
Jannik Streidl's avatar
Jannik Streidl committed
111
    else \
Timothy J. Baek's avatar
Timothy J. Baek committed
112
    apt-get update && \
Timothy J. Baek's avatar
Timothy J. Baek committed
113
114
    # Install pandoc, netcat and gcc
    apt-get install -y --no-install-recommends pandoc gcc netcat-openbsd curl jq && \
Timothy J. Baek's avatar
Timothy J. Baek committed
115
    apt-get install -y --no-install-recommends gcc python3-dev && \
Timothy J. Baek's avatar
Timothy J. Baek committed
116
117
118
119
    # 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
120
121
    fi

122
# install python dependencies
123
COPY --chown=$UID:$GID ./backend/requirements.txt ./requirements.txt
124

Justin Hayes's avatar
Justin Hayes committed
125
126
RUN pip3 install uv && \
    if [ "$USE_CUDA" = "true" ]; then \
Timothy J. Baek's avatar
Timothy J. Baek committed
127
128
129
130
131
    # 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 && \
    uv pip install --system -r requirements.txt --no-cache-dir && \
    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'])"; \
132
    else \
Timothy J. Baek's avatar
Timothy J. Baek committed
133
134
135
136
    pip3 install torch torchvision torchaudio --index-url https://download.pytorch.org/whl/cpu --no-cache-dir && \
    uv pip install --system -r requirements.txt --no-cache-dir && \
    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'])"; \
137
138
    fi; \
    chown -R $UID:$GID /app/backend/data/
Timothy J. Baek's avatar
Timothy J. Baek committed
139

140

141

142
# copy embedding weight from build
Jannik Streidl's avatar
Jannik Streidl committed
143
144
# 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
145
146

# copy built frontend files
147
148
149
COPY --chown=$UID:$GID --from=build /app/build /app/build
COPY --chown=$UID:$GID --from=build /app/CHANGELOG.md /app/CHANGELOG.md
COPY --chown=$UID:$GID --from=build /app/package.json /app/package.json
150
151

# copy backend files
152
COPY --chown=$UID:$GID ./backend .
Timothy J. Baek's avatar
Timothy J. Baek committed
153

Jannik S's avatar
Jannik S committed
154
155
EXPOSE 8080

ScribblerCoder's avatar
ScribblerCoder committed
156
HEALTHCHECK CMD curl --silent --fail http://localhost:${PORT:-8080}/health | jq -ne 'input.status == true' || exit 1
Timothy J. Baek's avatar
Timothy J. Baek committed
157

158
USER $UID:$GID
joecryptotoo's avatar
joecryptotoo committed
159

160
ARG BUILD_HASH
161
ENV WEBUI_BUILD_VERSION=${BUILD_HASH}
162

Silentoplayz's avatar
Silentoplayz committed
163
CMD [ "bash", "start.sh"]