Updates docs for SR1 with final revision
[genesis.git] / fuel / build / docker / Makefile
1 ##############################################################################
2 # Copyright (c) 2015 Ericsson AB and others.
3 # stefan.k.berg@ericsson.com
4 # jonas.bjurel@ericsson.com
5 # All rights reserved. This program and the accompanying materials
6 # are made available under the terms of the Apache License, Version 2.0
7 # which accompanies this distribution, and is available at
8 # http://www.apache.org/licenses/LICENSE-2.0
9 ##############################################################################
10
11 FILES = $(wildcard ubuntu-builder/*) runcontext
12
13 .PHONY: all
14 all:    .docker
15
16 .docker: $(FILES)
17         /usr/bin/docker build --rm=true --no-cache=true -t opnfv.org/ubuntu-builder:14.04 ubuntu-builder
18         /usr/bin/docker tag -f opnfv.org/ubuntu-builder:14.04 opnfv.org/ubuntu-builder
19         touch .docker
20
21 .PHONY: clean
22 clean:
23         rm .docker