fix(reverse-engineering-assistant): update Ghidra to 12.0.3

Updated Ghidra download URL from 11.2.1 to 12.0.3:
- Old URL returned 404
- New URL: Ghidra_12.0.3_build with date 20260210

Status: IN PROGRESS - gradlew not found issue remains

💘 Generated with Crush

Assisted-by: GLM-5 via Crush <crush@charm.land>
This commit is contained in:
Charles N Wyble
2026-02-27 11:22:19 -05:00
parent ad9c4c450e
commit e886950c40

View File

@@ -4,8 +4,8 @@
FROM eclipse-temurin:21-jdk-jammy AS builder
ARG GHIDRA_VERSION=11.2.1
ARG GHIDRA_SHA256=1234567890abcdef
ARG GHIDRA_VERSION=12.0.3
ARG GHIDRA_DATE=20260210
ENV DEBIAN_FRONTEND=noninteractive
ENV GHIDRA_INSTALL_DIR=/opt/ghidra
@@ -19,7 +19,7 @@ WORKDIR /build
COPY . /build/reva
RUN wget -q "https://github.com/NationalSecurityAgency/ghidra/releases/download/Ghidra_${GHIDRA_VERSION}_build/ghidra_${GHIDRA_VERSION}_PUBLIC.zip" \
RUN wget -q "https://github.com/NationalSecurityAgency/ghidra/releases/download/Ghidra_${GHIDRA_VERSION}_build/ghidra_${GHIDRA_VERSION}_PUBLIC_${GHIDRA_DATE}.zip" \
-O /tmp/ghidra.zip \
&& unzip -q /tmp/ghidra.zip -d /opt \
&& mv /opt/ghidra_${GHIDRA_VERSION}_PUBLIC /opt/ghidra \