open-webui/Dockerfile

65 lines
1.7 KiB
Docker
Raw Normal View History

2023-10-09 00:38:42 +02:00
# syntax=docker/dockerfile:1
FROM node:alpine as build
2023-11-15 01:28:51 +01:00
WORKDIR /app
2024-01-08 05:50:09 +01:00
# wget embedding model weight from alpine (does not exist from slim-buster)
RUN wget "https://chroma-onnx-models.s3.amazonaws.com/all-MiniLM-L6-v2/onnx.tar.gz" -O - | \
tar -xzf - -C /app
2024-01-08 05:50:09 +01:00
COPY package.json package-lock.json ./
RUN npm ci
COPY . .
RUN npm run build
2023-10-09 00:38:42 +02:00
2024-01-08 05:50:09 +01:00
2024-01-07 17:28:35 +01:00
FROM python:3.11-slim-bookworm as base
2023-11-15 01:28:51 +01:00
ENV ENV=prod
2024-01-13 04:38:30 +01:00
ENV PORT ""
2024-01-06 02:16:35 +01:00
ENV OLLAMA_API_BASE_URL "/ollama/api"
2024-01-05 03:55:15 +01:00
ENV OPENAI_API_BASE_URL ""
ENV OPENAI_API_KEY ""
ENV WEBUI_SECRET_KEY ""
2023-11-15 01:28:51 +01:00
ENV SCARF_NO_ANALYTICS true
ENV DO_NOT_TRACK true
#Whisper TTS Settings
ENV WHISPER_MODEL="base"
2024-02-15 08:32:54 +01:00
ENV WHISPER_MODEL_DIR="/app/backend/data/cache/whisper/models"
2023-11-15 01:28:51 +01:00
WORKDIR /app/backend
# install python dependencies
2023-11-15 01:28:51 +01:00
COPY ./backend/requirements.txt ./requirements.txt
2024-01-08 06:22:37 +01: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-26 20:57:35 +01:00
# Install pandoc and netcat
2024-01-23 08:11:50 +01:00
# RUN python -c "import pypandoc; pypandoc.download_pandoc()"
RUN apt-get update \
2024-01-26 20:57:35 +01:00
&& apt-get install -y pandoc netcat-openbsd \
2024-01-23 08:11:50 +01:00
&& rm -rf /var/lib/apt/lists/*
2024-01-07 17:28:35 +01:00
# RUN python -c "from sentence_transformers import SentenceTransformer; model = SentenceTransformer('all-MiniLM-L6-v2')"
2024-02-15 08:32:54 +01: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'])"
2023-11-15 01:28:51 +01:00
# copy embedding weight from build
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
# copy built frontend files
COPY --from=build /app/build /app/build
# copy backend files
2023-11-15 01:28:51 +01:00
COPY ./backend .
2024-01-30 01:24:16 +01:00
CMD [ "bash", "start.sh"]