Skip to content

Commit

Permalink
Merge pull request #3774 from open-webui/dev
Browse files Browse the repository at this point in the history
fix
  • Loading branch information
tjbck authored Jul 10, 2024
2 parents 2011cbd + 38cc0da commit eff736a
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 5 deletions.
6 changes: 4 additions & 2 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -97,6 +97,7 @@ RUN if [ "$USE_OLLAMA" = "true" ]; then \
apt-get update && \
# Install pandoc and netcat
apt-get install -y --no-install-recommends pandoc netcat-openbsd curl && \
apt-get install -y --no-install-recommends gcc python3-dev && \
# for RAG OCR
apt-get install -y --no-install-recommends ffmpeg libsm6 libxext6 && \
# install helper tools
Expand All @@ -107,8 +108,9 @@ RUN if [ "$USE_OLLAMA" = "true" ]; then \
rm -rf /var/lib/apt/lists/*; \
else \
apt-get update && \
# Install pandoc and netcat
apt-get install -y --no-install-recommends pandoc netcat-openbsd curl jq && \
# Install pandoc, netcat and gcc
apt-get install -y --no-install-recommends pandoc gcc netcat-openbsd curl jq && \
apt-get install -y --no-install-recommends gcc python3-dev && \
# for RAG OCR
apt-get install -y --no-install-recommends ffmpeg libsm6 libxext6 && \
# cleanup
Expand Down
2 changes: 1 addition & 1 deletion backend/requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ openpyxl==3.1.5
pyxlsb==1.0.10
xlrd==2.0.1
validators==0.28.1
psutil==5.9.7
psutil

opencv-python-headless==4.10.0.84
rapidocr-onnxruntime==1.3.22
Expand Down
7 changes: 5 additions & 2 deletions src/app.html
Original file line number Diff line number Diff line change
Expand Up @@ -65,6 +65,7 @@

%sveltekit.head%
</head>

<body data-sveltekit-preload-data="hover">
<div style="display: contents">%sveltekit.body%</div>

Expand All @@ -86,7 +87,7 @@
height: 6rem;
top: 44%;
left: 50%;
margin-left: -3rem;
transform: translateX(-50%);
"
src="/static/splash.png"
/>
Expand All @@ -98,7 +99,7 @@
left: 50%;
width: 24rem;
margin-left: -12rem;
transform: translateX(-50%);
display: flex;
flex-direction: column;
Expand Down Expand Up @@ -154,6 +155,7 @@
#splash-screen {
background: #fff;
}

html.dark #splash-screen {
background: #000;
}
Expand Down Expand Up @@ -210,6 +212,7 @@
opacity: 0.65;
}
}

.animate-pulse-fast {
animation: pulse 1.5s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}
Expand Down

0 comments on commit eff736a

Please sign in to comment.