From 43c2b869b3bce24caff06625bd68480adf32b5fc Mon Sep 17 00:00:00 2001 From: -LAN- Date: Fri, 28 Nov 2025 14:51:03 +0800 Subject: [PATCH] chore(api): slim Dockerfile by installing wheels without venv --- api/Dockerfile | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/api/Dockerfile b/api/Dockerfile index 6879cf8ffb..0daff1efbd 100644 --- a/api/Dockerfile +++ b/api/Dockerfile @@ -71,9 +71,9 @@ RUN set -eux; \ # install fonts to support the use of tools like pypdfium2 fonts-noto-cjk \ # install a package to improve the accuracy of guessing mime type and file extension - media-types \ - # install libmagic to support the use of python-magic guess MIMETYPE - libmagic1; \ + media-types \ + # install libmagic to support the use of python-magic guess MIMETYPE + libmagic1; \ apt-get autoremove -y; \ rm -rf /var/lib/apt/lists/*