blob: d3aa83a31cd0f2a57aaf9d8143672b82b0ae1454 [file] [log] [blame]
David K. Bainbridgeb5415042016-05-13 17:06:10 -07001.PHONY: help
2help:
3 @echo "image - create docker image for the MAAS deploy flow utility"
4 @echo "save - save the docker image for the MAAS deployment flow utility to a local tar file"
5 @echo "clean - remove any generated files"
6 @echo "help - this message"
7
8.PHONY: image
9image:
10 docker build -t cord/maas-automation:0.1-prerelease .
11
12save: image
13 docker save -o cord_maas-automation.1-prerelease.tar cord/maas-automation:0.1-prerelease
14
15.PHONT: clean
16clean:
17 rm -f cord_maas-automation.1-prerelease.tar