Skip to content

Commit

Permalink
add ghidrecomp docker file
Browse files Browse the repository at this point in the history
  • Loading branch information
clearbluejar committed Jan 10, 2024
1 parent d9981cd commit a99fabd
Showing 1 changed file with 19 additions and 0 deletions.
19 changes: 19 additions & 0 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
# From https://github.com/clearbluejar/ghidra-python
FROM ghcr.io/clearbluejar/ghidra-python:latest

ENV GHIDRA_INSTALL_DIR=/ghidra

USER vscode
WORKDIR /home/vscode/

# install latest from pip
RUN pip install ghidrecomp

RUN python -m pyhidra.install_plugins

# point absolute ghidriffs dir to user
# this supports absoulte mapping "docker run --rm -it -v ${PWD}/ghidriffs:/ghidriffs ghidriff /bin/cat1 /bin/cat2"
RUN ln -s /ghidrecomps /home/vscode/

ENTRYPOINT ["/home/vscode/.local/bin/ghidrecomp"]

0 comments on commit a99fabd

Please sign in to comment.