mirror of
https://github.com/open-webui/open-webui.git
synced 2026-05-06 10:58:17 -05:00
[GH-ISSUE #13659] feat: CVEs and Evaluating Base Image Update #55653
Reference in New Issue
Block a user
Delete Branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
Originally created by @Azzeo on GitHub (May 7, 2025).
Original GitHub issue: https://github.com/open-webui/open-webui/issues/13659
Check Existing Issues
Problem Description
A recent security scan (Trivy, 2025-05-07) of the
ghcr.io/open-webui/open-webui:mainDocker image has identified a number of vulnerabilities, including CRITICAL and HIGH severity CVEs. The current base image ispython:3.11-slim-bookworm(Debian 12.10). Addressing these vulnerabilities and evaluating a newer base image would enhance the overall security and maintainability of the application.Note that issue #12284 was closed, due to the base image being upgraded to python 3.12 #12520 . However, this pull request was reverted due to ARM64/linux cuda build failure.
Desired Solution you'd like
Alternatives Considered
Additional Context
Total Found (High & Critical): 89
* CRITICAL: 4
* HIGH: 85
The current Dockerfile (
FROM python:3.11-slim-bookworm AS base) installs a number of OS packages. Moving to a newer version of Debian when stable and suitable) or a regularly updated LTS base could provide more up-to-date security patches.