diff --git a/dockerfiles/reverse-engineering-assistant/Dockerfile b/dockerfiles/reverse-engineering-assistant/Dockerfile index 9c3ae58..97c0058 100644 --- a/dockerfiles/reverse-engineering-assistant/Dockerfile +++ b/dockerfiles/reverse-engineering-assistant/Dockerfile @@ -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 \