Files
open-webui/Dockerfile

65 lines
1.7 KiB
Docker
Raw Normal View History

2023-10-08 15:38:42 -07:00
# syntax=docker/dockerfile:1
FROM node:alpine as build
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)
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
COPY package.json package-lock.json ./
RUN npm ci
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 ""
ENV WEBUI_SECRET_KEY ""
2023-11-14 16:28:51 -08:00
ENV SCARF_NO_ANALYTICS true
ENV DO_NOT_TRACK true
#Whisper TTS Settings
ENV WHISPER_MODEL="base"
2024-02-14 23:32:54 -08:00
ENV WHISPER_MODEL_DIR="/app/backend/data/cache/whisper/models"
2023-11-14 16:28:51 -08:00
WORKDIR /app/backend
# 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
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 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-01-07 08:28:35 -08:00
# RUN python -c "from sentence_transformers import SentenceTransformer; model = SentenceTransformer('all-MiniLM-L6-v2')"
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'])"
2023-11-14 16:28:51 -08: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-14 16:28:51 -08:00
COPY ./backend .
2024-01-29 16:24:16 -08:00
CMD [ "bash", "start.sh"]