From 0d17d14a155f5d19468c7db17d491eaa629e85fa Mon Sep 17 00:00:00 2001 From: xwings Date: Tue, 28 Apr 2026 10:57:47 +0800 Subject: [PATCH] fix docker python:3-slim and dropped --no-deps --- Dockerfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Dockerfile b/Dockerfile index 0af1fe057..861fa36db 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,4 +1,4 @@ -FROM python:3.13-slim-bookworm AS base +FROM python:3.12-slim-bookworm AS base WORKDIR /qiling @@ -33,7 +33,7 @@ WORKDIR /qiling RUN apt-get update \ && apt-get install -y --no-install-recommends unzip apt-utils \ && rm -rf /var/lib/apt/lists/* \ - && pip3 install --no-deps --no-cache-dir dist/*.whl \ + && pip3 install --no-cache-dir dist/*.whl \ && rm -rf ./dist/ CMD ["bash"]