FROM ubuntu:22.04 ENV DEBIAN_FRONTEND=noninteractive RUN apt-get update && apt-get install -y \ qemu-system-x86 \ qemu-utils \ python3 \ python3-pip \ wget \ git \ net-tools \ && rm -rf /var/lib/apt/lists/* RUN pip3 install websockify RUN cd /opt && git clone https://github.com/novnc/noVNC.git WORKDIR /app COPY main.py /app/main.py RUN mkdir -p /app/android EXPOSE 7860 CMD ["python3", "main.py"]