URL /test/message for sending to kafka
[osm/NBI.git] / Dockerfile
1 FROM ubuntu:16.04
2
3 # Set the working directory to /app
4 WORKDIR /app/osm_nbi
5
6 # Copy the current directory contents into the container at /app
7 ADD . /app
8
9 RUN apt-get update && apt-get -y install git  python3 python3-jsonschema \
10     python3-cherrypy3 python3-pymongo python3-yaml python3-pip \
11     && pip3 install aiokafka \
12     && mkdir -p /app/storage/kafka && mkdir -p /app/log 
13
14
15 EXPOSE 9999
16
17 LABEL Maintainer="alfonso.tiernosepulveda@telefonica.com" \
18       Description="This implements a north bound interface for OSM" \
19       Version="1.0" \
20       Author="Alfonso Tierno"
21
22 # Used for local storage
23 VOLUME /app/storage
24 # Used for logs
25 VOLUME /app/log
26
27 # The following ENV can be added with "docker run -e xxx' to configure
28 # server
29 ENV OSMNBI_SOCKET_HOST     0.0.0.0
30 ENV OSMNBI_SOCKET_PORT     9999
31 # storage
32 ENV OSMNBI_STORAGE_PATH    /app/storage
33 # database
34 ENV OSMNBI_DATABASE_DRIVER mongo
35 ENV OSMNBI_DATABASE_HOST   mongo
36 ENV OSMNBI_DATABASE_PORT   27017
37 # web
38 ENV OSMNBI_STATIC_DIR      /app/osm_nbi/html_public
39 # logs
40 ENV OSMNBI_LOG_FILE        /app/log
41 ENV OSMNBI_LOG_LEVEL       DEBUG
42 # message
43 ENV OSMNBI_MESSAGE_DRIVER  kafka
44 ENV OSMNBI_MESSAGE_HOST    kafka
45 ENV OSMNBI_MESSAGE_PORT    9092
46
47 # Run app.py when the container launches
48 CMD ["python3", "nbi.py"]
49