Spaces:
Paused
Paused
File size: 439 Bytes
0954181 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 | 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"] |