I want to install an ARM .apk onto a x86 Android emulator. It already works with libhoudini and Genymotion. Now I want to use libhoudini with docker-android.
I already tried the solution from How to flash zip on Genymotion programmatically (extracting the shell script and pushing it via adb to the emulator inside Docker), but this didn't work either because unzip/zip is not supported.
This is the current Dockerfile:
FROM budtmo/docker-android-x86-6.0
COPY ./app/outputs/apk/release/app-release-unsigned.apk .
COPY ./arm-translation.tar .
COPY ./setup.sh .
COPY ./flash-archive.sh .
RUN chmod 777 setup.sh
What is the best way to run an ARM .apk on a x86 emulator inside Docker?