Merge "ves: move yaml and configuration files in to folders within the ves_app folder"
[barometer.git] / docker / barometer-ves / Dockerfile
1 # Copyright 2018 Intel Corporation and OPNFV
2 #
3 # Licensed under the Apache License, Version 2.0 (the "License");
4 # you may not use this file except in compliance with the License.
5 # You may obtain a copy of the License at
6 #
7 # http://www.apache.org/licenses/LICENSE-2.0
8 #
9 # Unless required by applicable law or agreed to in writing, software
10 # distributed under the License is distributed on an "AS IS" BASIS,
11 # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12 # See the License for the specific language governing permissions and
13 # limitations under the License.
14
15 FROM centos:7
16 RUN yum update -y && \
17     yum install -y epel-release \
18                    git \
19                    nc
20
21 RUN yum install -y python-pip
22 RUN pip install pyyaml \
23                 kafka-python
24
25 ENV repos_dir /src
26 ENV ves_dir barometer/3rd_party/collectd-ves-app/ves_app
27
28 WORKDIR ${repos_dir}
29 RUN git clone https://gerrit.opnfv.org/gerrit/barometer
30 WORKDIR ${ves_dir}
31 COPY start_ves_app.sh ${ves_dir}/start_ves_app.sh
32 RUN chmod +x ${ves_dir}/start_ves_app.sh
33
34 ENTRYPOINT ["./barometer/3rd_party/collectd-ves-app/ves_app/start_ves_app.sh"]
35 CMD ["host.yaml"]