blob: cfccb68c5a81061d9967efb59860991a3bdc3745 [file] [log] [blame]
Mike Marchetti182bd732018-09-05 09:52:42 -04001from ubuntu:xenial
2
3MAINTAINER Gennadiy Dubina <gennadiy.dubina@dataat.com>; Alfonso Tierno <alfonso.tiernosepulveda@telefoncia.com>
4
Mike Marchetti13d76c82018-09-19 15:00:36 -04005RUN apt-get update && apt-get -y install curl software-properties-common git
6RUN apt-get update && apt-get install -y python-setuptools python-wheel mysql-client python-bitarray
Mike Marchetti182bd732018-09-05 09:52:42 -04007
8ARG REPOSITORY_BASE=http://osm-download.etsi.org/repository/osm/debian
9ARG RELEASE=ReleaseFOUR-daily
10ARG REPOSITORY_KEY=OSM%20ETSI%20Release%20Key.gpg
11ARG REPOSITORY=testing
12
13RUN curl ${REPOSITORY_BASE}/${RELEASE}/${REPOSITORY_KEY} | apt-key add -
14RUN add-apt-repository -y "deb ${REPOSITORY_BASE}/${RELEASE} ${REPOSITORY} RO IM common openvim" && apt update
15
Mike Marchetti13d76c82018-09-19 15:00:36 -040016ARG RO_VERSION
17ARG IM_VERSION
18
19RUN apt-get update && apt-get install -y python-osm-ro${RO_VERSION} python-osm-im${IM_VERSION}
Mike Marchetti182bd732018-09-05 09:52:42 -040020
21RUN mkdir -p /bin/RO
22
23COPY scripts/ /bin/RO
24
25VOLUME /opt/openmano/logs
26
27EXPOSE 9090
28
29# Two mysql databases are needed (DB and DB_OVIM). Can be hosted on same or separated containers
30# These ENV must be provided
31ENV RO_DB_HOST=""
32ENV RO_DB_OVIM_HOST=""
33 # if empty RO_DB_HOST is assumed
34
35# These ENV should be provided first time for creating database. It will create and init only if empty!
36ENV RO_DB_ROOT_PASSWORD=""
37ENV RO_DB_OVIM_ROOT_PASSWORD=""
38 # if empty RO_DB_ROOT_PASSWORD is assumed
39
40# These ENV can be provided, but default values are ok
41ENV RO_DB_USER=mano
42ENV RO_DB_OVIM_USER=mano
43ENV RO_DB_PASSWORD=manopw
44ENV RO_DB_OVIM_PASSWORD=manopw
45ENV RO_DB_PORT=3306
46ENV RO_DB_OVIM_PORT=3306
47ENV RO_DB_NAME=mano_db
48ENV RO_DB_OVIM_NAME=mano_vim_db
49
50CMD /bin/RO/start.sh