This is a requirement for OPNFV CI to build Dockerfiles and allows
builds to perform branch specific actions.
Change-Id: I46c5c99a74e0c9a235a483a4be32f3bd283e0ccd
Signed-off-by: Trevor Bramwell <tbramwell@linuxfoundation.org>
 MAINTAINER Mark Beierl <mark.beierl@dell.com>
 LABEL version="3.1" description="OPNFV Storperf HTTP Front End Container"
 
+ARG BRANCH=master
+
 COPY ./nginx.conf /etc/nginx/nginx.conf
 COPY ./html /etc/nginx/html
 
 
 MAINTAINER Jose Lausuch <jose.lausuch@ericsson.com>
 LABEL version="5.0" description="OPNFV Storperf Docker container"
 
+ARG BRANCH=master
+
 ENV repos_dir /home/opnfv/repos
 ENV DEBIAN_FRONTEND noninteractive
 
 
 MAINTAINER Mark Beierl <mark.beierl@dell.com>
 LABEL version="0.1" description="OPNFV Storperf Reporting Container"
 
+ARG BRANCH=master
+
 RUN apk add --update python py-pip
 
 COPY . /home/opnfv/storperf-reporting
 
 CMD ["python", "app.py"]
 
-EXPOSE 5000
\ No newline at end of file
+EXPOSE 5000