APKDeepLens
APKDeepLens copied to clipboard
Docker Run Instructions Fix
The docker run instructions didn't work for me
docker run --rm -v /path/to/apk/files:/apk apkdeeplens -apk /apk/file.apk
it returned the following error
docker: Error response from daemon: failed to create task for container: failed to create shim task: OCI runtime create failed: runc create failed: unable to start container process: exec: "-apk": executable file not found in $PATH: unknown.
I was able to improve the command to run properly and export the PDF to the user's desktop using the following:
sudo docker run --rm \
-v /home/dev/Desktop:/apk \
-v /home/dev/Desktop/apkdeeplens-reports:/tmp \
apkdeeplens \
python /app/APKDeepLens.py -apk /apk/app.apk -report html -o /tmp