open-webui / Dockerfile
yxmnjxzx's picture
Update Dockerfile
cbee77b verified
raw
history blame contribute delete
898 Bytes
FROM ghcr.io/open-webui/open-webui:latest
COPY sync_data.sh sync_data.sh
RUN chmod -R 777 ./data && \
sed -i "1r sync_data.sh" ./start.sh
# 安装Redis
RUN apt-get update && apt-get install -y redis-server
# 修改Redis配置和权限
RUN mkdir -p /var/run/redis && \
chown -R 1000:1000 /var/run/redis && \
chown -R 1000:1000 /var/lib/redis && \
chmod 777 /var/run/redis
# 创建启动Redis的脚本
RUN echo "#!/bin/bash" > redis-start.sh && \
echo "redis-server --daemonize yes --save '' --appendonly no" >> redis-start.sh && \
echo "sleep 2" >> redis-start.sh && \
echo "echo 'Redis status:'" >> redis-start.sh && \
echo "redis-cli ping" >> redis-start.sh
RUN chmod -R 777 ./data && \
sed -i "1r redis-start.sh" ./start.sh
# 安装Python依赖项
RUN pip install langchain-openai==0.2.14 langgraph==0.2.60 aiohttp exa_py==1.7.0 fire==0.7.0 python-dotenv==1.0.1