Install r2frida and use /usr as prefix for r2docker ##build

This commit is contained in:
pancake 2023-06-04 01:23:11 +02:00
parent eb2cfcd676
commit d8f7e5dba2

View File

@ -95,7 +95,7 @@ RUN DEBIAN_FRONTEND=noninteractive \
RUN mkdir -p /mnt && cd /mnt && \
git clone -b "$R2_VERSION" -q --depth 100 https://github.com/radareorg/radare2.git && \
cd radare2 && \
./configure && \
./configure --prefix=/usr && \
make && \
make symstall
@ -120,5 +120,8 @@ COPY README.md /home/r2/README.md
# Setup r2pm
RUN r2pm -U
# install r2frida, r2ghidra and r2dec
RUN r2pm -i r2frida
# Base command for container
CMD ["/bin/bash"]