Add images for TestTelemetryIntegration tests

PROD-34185

Change-Id: I44bd8cb64d1f3057e2bfe128668ae0eeb3adde3f
diff --git a/Dockerfile b/Dockerfile
index e928caa..1680850 100644
--- a/Dockerfile
+++ b/Dockerfile
@@ -25,7 +25,7 @@
   && echo 'Acquire::GzipIndexes "true"; Acquire::CompressionTypes::Order:: "gz";' > apt.conf.d/docker-gzip-indexes \
   && echo 'APT::Get::Install-Recommends "false"; APT::Get::Install-Suggests "false";' > apt.conf.d/docker-recommends \
   && apt-get update && apt-get  upgrade -y \
-  && apt-get install -y vim-tiny git-core python-pip libffi-dev libssl-dev python-dev python3-dev iputils-ping patch \
+  && apt-get install -y vim-tiny git-core python-pip libffi-dev libssl-dev python-dev python3-dev iputils-ping patch wget \
 #Due to upstream bug we should use fixed version of pip
   && pip install -U 'pip==18.0' \
 # Do main stuff
@@ -34,6 +34,11 @@
   && apt-get -y purge libx11-data xauth libxmuu1 libxcb1 libx11-6 libxext6 \
   ppp pppconfig pppoeconf popularity-contest cpp gcc g++ libssl-doc \
   && apt-get -y autoremove; apt-get -y clean \
+  # Download files for telemetry_tempest_plugin.scenario.test_telemetry_integration.TestTelemetryIntegration test
+  && cd /tmp \
+  && wget https://github.com/codybum/OpenStackInAction/raw/master/scripts/icehouse/opt/devstack/files/images/cirros-0.3.1-x86_64-uec/cirros-0.3.1-x86_64-blank.img \
+  && wget https://github.com/codybum/OpenStackInAction/raw/master/scripts/icehouse/opt/devstack/files/images/cirros-0.3.1-x86_64-uec/cirros-0.3.1-x86_64-initrd \
+  && wget https://github.com/codybum/OpenStackInAction/raw/master/scripts/icehouse/opt/devstack/files/images/cirros-0.3.1-x86_64-uec/cirros-0.3.1-x86_64-vmlinuz \
   && rm -rf /root/.cache \
   && rm -rf /var/lib/apt/lists/*