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