diff options
author | Gokul Singaraju <gs244f@att.com> | 2018-03-27 15:31:12 -0400 |
---|---|---|
committer | Gokul Singaraju <gs244f@att.com> | 2018-03-27 15:32:55 -0400 |
commit | 286ec745cc0ef412b450d7c5c07d735707f9418b (patch) | |
tree | b950f298867d1e04c93f69e16e28156e7b07ac86 /Dockerfile | |
parent | 5b1be8ea36f150c226cd75ec559bbafb2378e3cc (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-- | Dockerfile | 10 |
1 files changed, 5 insertions, 5 deletions
@@ -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 |