open-webui / Dockerfile
Orion-zhen's picture
Update Dockerfile
1c884b5 verified
raw
history blame contribute delete
407 Bytes
FROM ghcr.io/open-webui/open-webui:main
RUN apt-get update && apt-get install -y python3 python3-pip curl
RUN pip3 install -U --no-cache-dir duckduckgo_search==6.3.5
RUN pip3 install --no-cache-dir webdavclient3 requests
COPY sync_data.sh sync_data.sh
RUN chmod -R 775 ./data && \
chmod -R 775 /app/backend/open_webui/static && \
chmod +x sync_data.sh && \
sed -i "1r sync_data.sh" ./start.sh