blob: 8ba46c48dcea37593e65037a0ab5d0494c921f90 [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
garciadeblas6c991452018-10-28 23:44:43 +01006RUN apt-get update && apt-get install -y python-setuptools python-wheel mysql-client python-bitarray python-pip
7RUN DEBIAN_FRONTEND=noninteractive pip2 install pip==9.0.3 pyangbind
Mike Marchetti182bd732018-09-05 09:52:42 -04008
9ARG REPOSITORY_BASE=http://osm-download.etsi.org/repository/osm/debian
10ARG RELEASE=ReleaseFOUR-daily
11ARG REPOSITORY_KEY=OSM%20ETSI%20Release%20Key.gpg
12ARG REPOSITORY=testing
13
14RUN curl ${REPOSITORY_BASE}/${RELEASE}/${REPOSITORY_KEY} | apt-key add -
15RUN add-apt-repository -y "deb ${REPOSITORY_BASE}/${RELEASE} ${REPOSITORY} RO IM common openvim" && apt update
16
Mike Marchetti13d76c82018-09-19 15:00:36 -040017ARG RO_VERSION
18ARG IM_VERSION
19
20RUN apt-get update && apt-get install -y python-osm-ro${RO_VERSION} python-osm-im${IM_VERSION}
Mike Marchetti182bd732018-09-05 09:52:42 -040021
22RUN mkdir -p /bin/RO
23
24COPY scripts/ /bin/RO
25
26VOLUME /opt/openmano/logs
27
28EXPOSE 9090
29
30# Two mysql databases are needed (DB and DB_OVIM). Can be hosted on same or separated containers
31# These ENV must be provided
32ENV RO_DB_HOST=""
33ENV RO_DB_OVIM_HOST=""
34 # if empty RO_DB_HOST is assumed
35
36# These ENV should be provided first time for creating database. It will create and init only if empty!
37ENV RO_DB_ROOT_PASSWORD=""
38ENV RO_DB_OVIM_ROOT_PASSWORD=""
39 # if empty RO_DB_ROOT_PASSWORD is assumed
40
41# These ENV can be provided, but default values are ok
42ENV RO_DB_USER=mano
43ENV RO_DB_OVIM_USER=mano
44ENV RO_DB_PASSWORD=manopw
45ENV RO_DB_OVIM_PASSWORD=manopw
46ENV RO_DB_PORT=3306
47ENV RO_DB_OVIM_PORT=3306
48ENV RO_DB_NAME=mano_db
49ENV RO_DB_OVIM_NAME=mano_vim_db
50
Mike Marchetti851aac22018-09-20 10:18:01 -040051HEALTHCHECK --interval=5s --timeout=2s --retries=12 \
52 CMD curl --silent --fail localhost:9090/openmano/tenants || exit 1
Mike Marchetti182bd732018-09-05 09:52:42 -040053CMD /bin/RO/start.sh