appium / appium-docker-android

Appium Server setup to automate android testing on real devices
https://hub.docker.com/r/appium/
Other
604 stars 230 forks source link

appium image for ARM #162

Open moqijin opened 1 year ago

moqijin commented 1 year ago

This image only supports amd64. Is there any plan to launch a version running on ARM arch, such as raspberry pi 4B.

RapThorDev commented 1 year ago

In Dockerfile use this:

FROM arm64v8/ubuntu:18.04

...

And install the other JAVA

RUN apt-get -qqy update && \ apt-get -qqy --no-install-recommends install \ openjdk-8-jdk-headless \ ... other installs ...

ENV JAVA_HOME="/usr/lib/jvm/java-8-openjdk-arm64/jre" \ PATH=$PATH:$JAVA_HOME/bin

... other options and commands ...