FROM python:3.10-slim RUN apt-get update && \ apt-get install -y git curl && \ git clone https://github.com/novnc/noVNC.git /opt/novnc && \ pip install websockify && \ apt-get clean && rm -rf /var/lib/apt/lists/* WORKDIR /opt/novnc RUN echo '
' > /opt/novnc/index.html EXPOSE 6080 CMD ["websockify", "--web=/opt/novnc", "6080", "playwright:5900"]