Initial Commit
This commit is contained in:
parent
21ca3491f3
commit
5485eba4d0
13
Dockerfile
Normal file
13
Dockerfile
Normal file
@ -0,0 +1,13 @@
|
||||
FROM eclipse-temurin:21
|
||||
RUN apt-get update -y
|
||||
RUN apt-get install python3-full wget unzip -y
|
||||
WORKDIR /srv
|
||||
ARG LINK_GHIDRA='https://github.com/NationalSecurityAgency/ghidra/releases/download/Ghidra_11.2.1_build/ghidra_11.2.1_PUBLIC_20241105.zip'
|
||||
RUN sh -c \
|
||||
'FILENAME='ghidra.zip' && \
|
||||
wget $LINK_GHIDRA -O $FILENAME && \
|
||||
unzip $FILENAME && \
|
||||
rm -rf $FILENAME'
|
||||
RUN cd ghidra_*/ && mv ./* ../ && cd ../ && rm -rf ghidra_*/
|
||||
RUN sh -c '/srv/server/svrInstall'
|
||||
ENTRYPOINT ["/srv/server/ghidraSvr","console"]
|
||||
Loading…
Reference in New Issue
Block a user