From f496ab0edb03049289c563ce402c6f717bb1ed2e Mon Sep 17 00:00:00 2001 From: ghidraffe <108089404+ghidraffe@users.noreply.github.com> Date: Fri, 27 Feb 2026 15:17:12 +0000 Subject: [PATCH] upgrade pip in docker images --- docker/Dockerfile | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/docker/Dockerfile b/docker/Dockerfile index 533dac2d95..134fa1028a 100644 --- a/docker/Dockerfile +++ b/docker/Dockerfile @@ -23,21 +23,23 @@ WORKDIR /ghidra # update and install dependencies used to both build and run ghidra RUN apk update \ - && apk add openjdk21 python3 \ + && apk add openjdk21 python3 py3-pip \ bash gcompat \ fontconfig msttcorefonts-installer \ linux-headers libressl-dev \ - && update-ms-fonts + && update-ms-fonts \ + && pip install --break-system-packages --upgrade pip FROM base AS build # install additional dependencies used to build ghidra RUN apk add gradle \ - python3-dev py-pip \ + python3-dev \ alpine-sdk \ build-base \ gcc g++ make libc-dev zlib-dev musl-dev \ zip readline-dev + # copy the contents of the release into the current working dir. COPY . .