open-webui/Dockerfile

48 lines
1 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"
2023-10-09 00:38:42 +02: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-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_JWT_SECRET_KEY "SECRET_KEY"
2023-11-15 01:28:51 +01:00
WORKDIR /app
2024-01-08 05:50:09 +01:00
# copy embedding weight from build
COPY --from=build onnx.tar.gz /root/.cache/chroma/onnx_models/all-MiniLM-L6-v2
RUN cd /root/.cache/chroma/onnx_models/all-MiniLM-L6-v2 &&\
tar -xzf onnx.tar.gz
# copy built frontend files
2023-11-15 01:28:51 +01:00
COPY --from=build /app/build /app/build
WORKDIR /app/backend
COPY ./backend/requirements.txt ./requirements.txt
RUN pip3 install -r requirements.txt
2024-01-07 17:28:35 +01:00
# RUN python -c "from sentence_transformers import SentenceTransformer; model = SentenceTransformer('all-MiniLM-L6-v2')"
2023-11-15 01:28:51 +01:00
COPY ./backend .
CMD [ "sh", "start.sh"]