From 8e8726cd9dbf6dfbd8e0c68563e66e71542948e2 Mon Sep 17 00:00:00 2001 From: CaptainB Date: Wed, 9 Jul 2025 14:22:05 +0800 Subject: [PATCH] chore: remove diskcache2 from pip install in Dockerfile --- installer/Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/installer/Dockerfile b/installer/Dockerfile index af029fa75..a4cc65757 100644 --- a/installer/Dockerfile +++ b/installer/Dockerfile @@ -29,7 +29,7 @@ RUN rm -rf /opt/maxkb-app/ui && \ find /opt/maxkb-app -depth \( -name ".git*" -o -name ".docker*" -o -name ".idea*" -o -name ".editorconfig*" -o -name ".prettierrc*" -o -name "README.md" -o -name "poetry.lock" -o -name "pyproject.toml" \) -exec rm -rf {} + && \ export MAXKB_CONFIG_TYPE=ENV && python3 /opt/maxkb-app/apps/manage.py compilemessages && \ export PIP_TARGET=/opt/maxkb-app/sandbox/python-packages && \ - pip install diskcache2 requests pymysql psycopg2-binary && \ + pip install requests pymysql psycopg2-binary && \ rm -rf /opt/maxkb-app/installer FROM ghcr.io/1panel-dev/maxkb-base:python3.11-pg17.5