From 362906974c96f7ccbe39488a6921faf7e016fe27 Mon Sep 17 00:00:00 2001 From: WWWw <109729945+initialencounter@users.noreply.github.com> Date: Fri, 1 Nov 2024 20:51:36 +0800 Subject: [PATCH] drop pip cache --- base/Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/base/Dockerfile b/base/Dockerfile index 37da5d1..5e6a499 100644 --- a/base/Dockerfile +++ b/base/Dockerfile @@ -30,7 +30,7 @@ RUN apt-get update && apt-get install -y \ python3-pip \ tzdata && \ echo "${TZ}" > /etc/timezone && \ - pip3 install frida websockets && \ + pip3 install frida websockets --no-cache-dir && \ ln -sf /usr/share/zoneinfo/${TZ} /etc/localtime && \ apt autoremove -y && \ apt clean && \