Files
open-webui/Dockerfile

59 lines
1.4 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"
2023-10-08 15:38:42 -07: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_JWT_SECRET_KEY "SECRET_KEY"
2023-11-14 16:28:51 -08:00
WORKDIR /app
2024-01-07 20:50:09 -08:00
# copy embedding weight from build
2024-01-07 20:55:32 -08:00
RUN mkdir -p /root/.cache/chroma/onnx_models/all-MiniLM-L6-v2
2024-01-07 20:52:15 -08:00
COPY --from=build /app/onnx.tar.gz /root/.cache/chroma/onnx_models/all-MiniLM-L6-v2
2024-01-07 20:50:09 -08:00
RUN cd /root/.cache/chroma/onnx_models/all-MiniLM-L6-v2 &&\
tar -xzf onnx.tar.gz
# copy built frontend files
2023-11-14 16:28:51 -08:00
COPY --from=build /app/build /app/build
WORKDIR /app/backend
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-22 23:11:50 -08:00
# Install pandoc
# RUN python -c "import pypandoc; pypandoc.download_pandoc()"
RUN apt-get update \
&& apt-get install -y pandoc \
&& 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')"
2023-11-14 16:28:51 -08:00
COPY ./backend .
CMD [ "sh", "start.sh"]