blob: 68f624770f89c7101a631dacd9f4f79f53d6f4fc [file] [log] [blame]
tiernof3c4dbc2018-02-05 14:53:28 +01001FROM ubuntu:16.04
2
3# Set the working directory to /app
4WORKDIR /app/osm_lcm
5
6# Copy the current directory contents into the container at /app
7ADD . /app
8
Adam Israel354ead92018-03-18 14:46:23 -04009RUN apt-get update && apt-get install -y git python3 \
tiernof3c4dbc2018-02-05 14:53:28 +010010 python3-pip python3-pymongo python3-yaml python3-aiohttp \
Adam Israel354ead92018-03-18 14:46:23 -040011 python3-stdeb python3-setuptools python3-all python-all \
12 python3-bitarray python3-regex python3-lxml debhelper dh-python tox wget \
13 python3-cffi \
14 && pip3 install -U aiokafka pyang lxml six enum34
tiernof3c4dbc2018-02-05 14:53:28 +010015
Adam Israel354ead92018-03-18 14:46:23 -040016RUN git clone https://osm.etsi.org/gerrit/osm/N2VC.git \
17 && cd N2VC \
18 && git fetch https://osm.etsi.org/gerrit/osm/N2VC refs/changes/70/5870/46 \
19 && git checkout FETCH_HEAD \
20 && cd modules/libjuju && python3 setup.py develop && cd ../.. \
21 && pip3 install -U -r requirements.txt \
22 && python3 setup.py develop \
23 && cd ..
24
25RUN mkdir -p /app/storage/kafka && mkdir -p /app/log
tiernof3c4dbc2018-02-05 14:53:28 +010026
27
28LABEL Maintainer="alfonso.tiernosepulveda@telefonica.com" \
29 Description="This implements a north bound interface for OSM" \
tiernoae501922018-02-06 23:17:16 +010030 Version="1.0" \
31 Author="Alfonso Tierno"
tiernof3c4dbc2018-02-05 14:53:28 +010032
33# Used for local storage
34VOLUME /app/storage
35# Used for logs
36VOLUME /app/log
37
38# The following ENV can be added with "docker run -e xxx' to configure
39# RO
40ENV OSMLCM_RO_HOST ro
41ENV OSMLCM_RO_PORT 9090
42ENV OSMLCM_RO_TENANT osm
43
44# VCA
45ENV OSMLCM_VCA_HOST vca
46ENV OSMLCM_VCA_PORT: 17070
47ENV OSMLCM_VCA_USER: admin
48ENV OSMLCM_VCA_SECRET: secret
49
50# database
51ENV OSMLCM_DATABASE_DRIVER mongo
52ENV OSMLCM_DATABASE_HOST mongo
53ENV OSMLCM_DATABASE_PORT 27017
54ENV OSMLCM_STORAGE_DRIVER local
55ENV OSMLCM_STORAGE_PATH /app/storage
56
57# message
58ENV OSMLCM_MESSAGE_DRIVER kafka
59ENV OSMLCM_MESSAGE_HOST kafka
60ENV OSMLCM_MESSAGE_PORT 9092
61
62ENV PYTHONPATH /app/osm_common
63# Run app.py when the container launches
64CMD ["python3", "lcm.py"]