Updates/Fix on Legal/License Headers
[barometer.git] / docker / ves / Dockerfile
1 # Copyright 2017-2019 Intel Corporation and OPNFV. All rights reserved.
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
16 FROM centos:7
17 RUN yum update -y && \
18     yum install -y epel-release \
19                    git \
20                    nc
21
22 RUN yum install -y python-pip
23 RUN pip install pyyaml \
24                 kafka-python
25
26 ENV repos_dir /src
27
28 WORKDIR ${repos_dir}
29 RUN git clone https://gerrit.opnfv.org/gerrit/barometer
30 WORKDIR barometer/3rd_party/collectd-ves-app/ves_app
31 COPY start_ves_app.sh ${repos_dir}
32 RUN chmod 755 start_ves_app.sh
33
34 ENTRYPOINT ["./start_ves_app.sh"]
35 CMD ["host.yaml"]