David K. Bainbridge | b541504 | 2016-05-13 17:06:10 -0700 | [diff] [blame] | 1 | FROM ubuntu:14.04 |
2 | MAINTAINER David Bainbridge <dbainbri@ciena.com> | ||||
3 | |||||
4 | RUN apt-get update -y && \ | ||||
5 | apt-get install -y python-pip | ||||
6 | |||||
7 | RUN pip install maasclient==0.3 && \ | ||||
8 | pip install requests_oauthlib && \ | ||||
9 | pip install ipaddress | ||||
10 | |||||
11 | ADD bootstrap.py /bootstrap.py | ||||
12 | |||||
13 | ENTRYPOINT [ "/bootstrap.py" ] |