Include the repo inside the dockerfile
Signed-off-by: Dimitris Zervas <dzervas@dzervas.gr>
This commit is contained in:
parent
792c3feed2
commit
503628b165
8
.dockerignore
Normal file
8
.dockerignore
Normal file
@ -0,0 +1,8 @@
|
||||
/tests
|
||||
target
|
||||
.git
|
||||
.vscode
|
||||
.github
|
||||
*.nix
|
||||
/renovate.json
|
||||
__handlers__
|
@ -19,6 +19,7 @@ ENV ANDROID_NDK_ROOT="${ANDROID_NDK_HOME}"
|
||||
|
||||
ARG NDK_ARCH=armeabi-v7a
|
||||
|
||||
COPY . /injectionforge
|
||||
WORKDIR /injectionforge
|
||||
|
||||
# Run with: docker run -it --name iforge -v $(pwd):/injectionforge injectionforge:latest
|
||||
|
@ -3,7 +3,9 @@
|
||||
FROM injectionforge-android
|
||||
|
||||
# Frida dependencies to optionally compile frida
|
||||
RUN apt-get update && DEBIAN_FRONTEND=noninteractive apt-get install -y build-essential git lib32stdc++-9-dev libc6-dev-i386 nodejs npm
|
||||
RUN apt-get update && \
|
||||
DEBIAN_FRONTEND=noninteractive apt-get install -y build-essential git lib32stdc++-9-dev libc6-dev-i386 nodejs npm python3-pip && \
|
||||
pip install --break-system-packages lief
|
||||
|
||||
# Compile frida-core devkit
|
||||
ARG FRIDA_HOST=android-arm
|
||||
|
Loading…
x
Reference in New Issue
Block a user