Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
chenpangpang
open-webui
Commits
87326a31
"macapp/vscode:/vscode.git/clone" did not exist on "c631a9c72608720b70d5fbb67a0986a1ffa1f5a1"
Commit
87326a31
authored
Jan 07, 2024
by
Timothy J. Baek
Browse files
fix: docker
parent
0345a800
Changes
2
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
13 additions
and
8 deletions
+13
-8
Dockerfile
Dockerfile
+12
-7
run.sh
run.sh
+1
-1
No files found.
Dockerfile
View file @
87326a31
...
...
@@ -4,12 +4,16 @@ FROM node:alpine as build
WORKDIR
/app
# 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"
COPY
package.json package-lock.json ./
RUN
npm ci
COPY
. .
RUN
npm run build
FROM
python:3.11-slim-bookworm as base
ENV
ENV=prod
...
...
@@ -22,6 +26,14 @@ ENV OPENAI_API_KEY ""
ENV
WEBUI_JWT_SECRET_KEY "SECRET_KEY"
WORKDIR
/app
# 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
COPY
--from=build /app/build /app/build
WORKDIR
/app/backend
...
...
@@ -29,13 +41,6 @@ WORKDIR /app/backend
COPY
./backend/requirements.txt ./requirements.txt
RUN
pip3
install
-r
requirements.txt
RUN
MODEL_DIR
=
"/root/.cache/chroma/onnx_models/all-MiniLM-L6-v2"
&&
\
ARCHIVE_NAME
=
"onnx.tar.gz"
&&
\
mkdir
-p
$MODEL_DIR
&&
\
cd
$MODEL_DIR
&&
\
wget
-O
$ARCHIVE_NAME
"https://chroma-onnx-models.s3.amazonaws.com/all-MiniLM-L6-v2/
$ARCHIVE_NAME
"
&&
\
tar
-xzf
$ARCHIVE_NAME
# RUN python -c "from sentence_transformers import SentenceTransformer; model = SentenceTransformer('all-MiniLM-L6-v2')"
COPY
./backend .
...
...
run.sh
View file @
87326a31
docker build
-t
ollama-webui
.
docker stop ollama-webui
||
true
docker
rm
ollama-webui
||
true
docker build
-t
ollama-webui
.
docker run
-d
-p
3000:8080
--add-host
=
host.docker.internal:host-gateway
-v
ollama-webui:/app/backend/data
--name
ollama-webui
--restart
always ollama-webui
docker image prune
-f
\ No newline at end of file
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment