Skip to content

Commit

Permalink
Merge pull request #2 from Enkelmann/update_to_v10
Browse files Browse the repository at this point in the history
Update Ghidra to v10.0.1
  • Loading branch information
jstucke authored Jul 22, 2021
2 parents e8ca307 + ad5f028 commit 7593668
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -1,14 +1,14 @@
FROM openjdk:jdk-slim


ENV GHIDRA_VERSION ghidra_9.2.1_PUBLIC_20201215
ENV GHIDRA_RELEASE_TAG Ghidra_10.0.1_build
ENV GHIDRA_VERSION ghidra_10.0.1_PUBLIC_20210708

RUN apt-get update && \
apt-get install -y --no-install-recommends wget unzip && \
apt-get clean && \
rm -rf /var/lib/apt/lists/*

RUN wget https://ghidra-sre.org/${GHIDRA_VERSION}.zip && \
RUN wget https://github.com/NationalSecurityAgency/ghidra/releases/download/${GHIDRA_RELEASE_TAG}/${GHIDRA_VERSION}.zip && \
unzip -d ghidra ${GHIDRA_VERSION}.zip && \
rm ${GHIDRA_VERSION}.zip && \
mv ghidra/ghidra_* /opt/ghidra
Expand Down

0 comments on commit 7593668

Please sign in to comment.