aboutsummaryrefslogtreecommitdiffstats
path: root/Dockerfile
diff options
context:
space:
mode:
authorGokul Singaraju <gs244f@att.com>2018-03-27 15:31:12 -0400
committerGokul Singaraju <gs244f@att.com>2018-03-27 15:32:55 -0400
commit286ec745cc0ef412b450d7c5c07d735707f9418b (patch)
treeb950f298867d1e04c93f69e16e28156e7b07ac86 /Dockerfile
parent5b1be8ea36f150c226cd75ec559bbafb2378e3cc (diff)
Added tests for heartbeat coverage
Issue-ID: DCAEGEN2-276 Change-Id: Ib0fa11fc5978f47854056f3c198347120b3873a8 Signed-off-by: Gokul Singaraju <gs244f@att.com>
Diffstat (limited to 'Dockerfile')
-rw-r--r--Dockerfile10
1 files changed, 5 insertions, 5 deletions
diff --git a/Dockerfile b/Dockerfile
index 6247123..00edd2d 100644
--- a/Dockerfile
+++ b/Dockerfile
@@ -11,11 +11,11 @@ RUN pip install pyyaml --upgrade
RUN pip install -r requirements.txt
RUN pip install -e .
-RUN mkdir /opt/config
-RUN echo 1.2.3.4 > /opt/config/coll_ip.txt
-RUN echo 1234 > /opt/config/coll_port.txt
-RUN echo 4.5.6.7 > /opt/config/pol_ip.txt
-RUN echo 4567 > /opt/config/pol_port.txt
+RUN mkdir /tmp/config
+RUN echo 1.2.3.4 > /tmp/config/coll_ip.txt
+RUN echo 1234 > /tmp/config/coll_port.txt
+RUN echo 4.5.6.7 > /tmp/config/pol_ip.txt
+RUN echo 4567 > /tmp/config/pol_port.txt
EXPOSE 10000
ENV PYTHONPATH /usr/local/lib/python3.6/site-packages