"vscode:/vscode.git/clone" did not exist on "7bf3212c5bfdfb470b726bda3648f6049f7092d3"
Dockerfile-cuda 3.78 KB
Newer Older
Joseph Young's avatar
Joseph Young committed
1
# syntax=docker/dockerfile:1
2
ARG CUDA_VERSION=12.3.2
Joseph Young's avatar
Joseph Young committed
3
4
5
6
7
8
9
10
11
12
13
14

######## WebUI frontend ########
FROM node:21-alpine3.19 as build

WORKDIR /app

COPY package.json package-lock.json ./
RUN npm ci

COPY . .
RUN npm run build

15
16
17
######## CPU-only WebUI backend ########
# To support both CPU and GPU backend, we need to keep the ability to build the CPU-only image.
#FROM python:3.11-slim-bookworm as base
18
FROM --platform=linux/amd64 cgr.dev/chainguard/python:latest-dev AS cpu-build-amd64
19
#FROM --platform=linux/amd64 ubuntu:22.04 AS cpu-builder-amd64
20

21
22
#FROM --platform=linux/amd64 cpu-builder-amd64 AS cpu-build-amd64
#RUN OPENWEBUI_CPU_TARGET="cpu" sh gen_linux.sh
23

24
25
#FROM --platform=linux/amd64 cpu-builder-amd64 AS cpu_avx-build-amd64
#RUN OPENWEBUI_CPU_TARGET="cpu_avx" sh gen_linux.sh
26

27
28
29
30
#FROM --platform=linux/amd64 cpu-builder-amd64 AS cpu_avx2-build-amd64
#RUN OPENWEBUI_CPU_TARGET="cpu_avx2" sh gen_linux.sh

######## CUDA WebUI backend ########
31
32
#FROM --platform=linux/amd64 nvidia/cuda:"$CUDA_VERSION"-devel-ubuntu22.04 AS cuda-build-amd64
#FROM --platform=linux/amd64 cgr.dev/chainguard/pytorch-cuda12:latest AS cuda-build-amd64 # fails with python requirements conflicts
33

Joseph Young's avatar
Joseph Young committed
34
# Set environment variables for NVIDIA Container Toolkit
35
36
37
ENV LD_LIBRARY_PATH=/usr/local/nvidia/lib:/usr/local/nvidia/lib64 \
    NVIDIA_DRIVER_CAPABILITIES=all \
    NVIDIA_VISIBLE_DEVICES=all
Joseph Young's avatar
Joseph Young committed
38

39
40
ENV ENV=prod \
    PORT=8080
Joseph Young's avatar
Joseph Young committed
41

42
43
44
## Base URL Config ##
ENV OLLAMA_BASE_URL="/ollama" \
    OPENAI_API_BASE_URL=""
Joseph Young's avatar
Joseph Young committed
45

46
47
48
49
50
## API Key and Security Config ##
ENV OPENAI_API_KEY="" \
    WEBUI_SECRET_KEY="" \
    SCARF_NO_ANALYTICS=true \
    DO_NOT_TRACK=true
Joseph Young's avatar
Joseph Young committed
51
52
53

######## Preloaded models ########
# whisper TTS Settings
54
55
ENV WHISPER_MODEL="base" \
    WHISPER_MODEL_DIR="/app/backend/data/cache/whisper/models"
Joseph Young's avatar
Joseph Young committed
56
57
58
59
60
61

# RAG Embedding Model Settings
# 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)
# 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.
62
63
64
65
66
ENV RAG_EMBEDDING_MODEL="all-MiniLM-L6-v2" \
    # device type for whisper tts and embedding models - "cpu" (default), "cuda" (NVIDIA GPU and CUDA required), or "mps" (apple silicon) - choosing this right can lead to better performance
    RAG_EMBEDDING_MODEL_DEVICE_TYPE="cuda" \
    RAG_EMBEDDING_MODEL_DIR="/app/backend/data/cache/embedding/models" \
    SENTENCE_TRANSFORMERS_HOME=$RAG_EMBEDDING_MODEL_DIR
Joseph Young's avatar
Joseph Young committed
67
68
69
70
71

######## Preloaded models ########
WORKDIR /app/backend

# Install Python & dependencies in the container
72
73
74
75
76
77
78
79
80
81
82
83
84
85
# Used for Debian
#RUN apt-get update && \
#    apt-get install -y --no-install-recommends python3.11 python3-pip ffmpeg libsm6 libxext6 pandoc netcat-openbsd && \
#    rm -rf /var/lib/apt/lists/*

# Used for Redhat
#RUN apk update && \
#    apk add --no-install-recommends python3.11 python3-pip ffmpeg libsm6 libxext6 pandoc netcat-openbsd && \
#    apk del /var/cache/apk/*.tbz2

# Install only the dependencies in the container, python will come from the base image used
RUN apk update && \
    apk add --no-install-recommends ffmpeg libsm6 libxext6 pandoc netcat-openbsd && \
    apk del /var/cache/apk/*.tbz2
Joseph Young's avatar
Joseph Young committed
86
87

COPY ./backend/requirements.txt ./requirements.txt
88
89
RUN pip3 install torch torchvision torchaudio --no-cache-dir && \
    pip3 install -r requirements.txt --no-cache-dir
Joseph Young's avatar
Joseph Young committed
90
91
92
93
94
95
96
97
98

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

# copy backend files
COPY ./backend .

99
100
EXPOSE 8080

Joseph Young's avatar
Joseph Young committed
101
CMD [ "bash", "start.sh"]