| FROM debian | |
| RUN apt -y update | |
| RUN apt install -y git python python-setuptools | |
| RUN git clone https://chromium.googlesource.com/chromiumos/platform/moblab.git | |
| WORKDIR /moblab | |
| RUN python setup.py install | |
| RUN apt remove -y git | |
| RUN apt autoremove -y | |
| RUN apt purge |