## # Copyright 2019 ETSI # # Licensed under the Apache License, Version 2.0 (the "License"); you may # not use this file except in compliance with the License. You may obtain # a copy of the License at # # http://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law or agreed to in writing, software # distributed under the License is distributed on an "AS IS" BASIS, WITHOUT # WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the # License for the specific language governing permissions and limitations # under the License. ## ######################################################################## FROM ubuntu:18.04 MAINTAINER Gennadiy Dubina ; Alfonso Tierno RUN apt-get update && apt-get -y install curl software-properties-common git tox python3-pip \ && python3 -m pip install --upgrade pip && python3 -m pip install pyangbind networking-l2gw ARG REPOSITORY_BASE=http://osm-download.etsi.org/repository/osm/debian ARG RELEASE=ReleaseNINE-daily ARG REPOSITORY_KEY=OSM%20ETSI%20Release%20Key.gpg ARG REPOSITORY=testing RUN curl ${REPOSITORY_BASE}/${RELEASE}/${REPOSITORY_KEY} | apt-key add - RUN add-apt-repository -y "deb ${REPOSITORY_BASE}/${RELEASE} ${REPOSITORY} RO IM common" && apt-get update ARG RO_VERSION ARG COMMON_VERSION RUN apt-get update && DEBIAN_FRONTEND=noninteractive apt-get install -y python3-osm-common${COMMON_VERSION} \ python3-osm-ro-plugin${RO_VERSION} python3-osm-ng-ro${RO_VERSION} \ python3-osm-rosdn-arista-cloudvision${RO_VERSION} python3-osm-rosdn-dpb${RO_VERSION} \ python3-osm-rosdn-dynpac${RO_VERSION} python3-osm-rosdn-floodlightof${RO_VERSION} \ python3-osm-rosdn-ietfl2vpn${RO_VERSION} python3-osm-rosdn-juniper-contrail${RO_VERSION} \ python3-osm-rosdn-odlof${RO_VERSION} python3-osm-rosdn-onos-vpls${RO_VERSION} \ python3-osm-rosdn-onosof${RO_VERSION} \ python3-osm-rovim-aws${RO_VERSION} python3-osm-rovim-azure${RO_VERSION} \ python3-osm-rovim-fos${RO_VERSION} python3-osm-rovim-opennebula${RO_VERSION} \ python3-osm-rovim-openstack${RO_VERSION} python3-osm-rovim-openvim${RO_VERSION} \ python3-osm-rovim-vmware${RO_VERSION} # ensure right version is installed as python3-cryptography install an old version # Since release 3.4 of python3-cryptography rust is an dependency RUN DEBIAN_FRONTEND=noninteractive apt-get -y install build-essential libssl-dev libffi-dev \ python3-dev cargo RUN python3 -m pip install --upgrade "cryptography>=2.5" VOLUME /var/log/osm EXPOSE 9090 # Two mysql databases are needed (DB and DB_OVIM). Can be hosted on same or separated containers # These ENV must be provided ENV RO_DB_HOST="" ENV RO_DB_OVIM_HOST="" # if empty RO_DB_HOST is assumed # These ENV should be provided first time for creating database. It will create and init only if empty! ENV RO_DB_ROOT_PASSWORD="" ENV RO_DB_OVIM_ROOT_PASSWORD="" # if empty RO_DB_ROOT_PASSWORD is assumed # These ENV can be provided, but default values are ok ENV RO_DB_USER=mano ENV RO_DB_OVIM_USER=mano ENV RO_DB_PASSWORD=manopw ENV RO_DB_OVIM_PASSWORD=manopw ENV RO_DB_PORT=3306 ENV RO_DB_OVIM_PORT=3306 ENV RO_DB_NAME=mano_db ENV RO_DB_OVIM_NAME=mano_vim_db ENV OPENMANO_TENANT=osm # database ENV OSMRO_DATABASE_DRIVER mongo ENV OSMRO_DATABASE_URI mongodb://mongo:27017 # ENV OSMRO_DATABASE_COMMONKEY xxx # ENV OSMRO_DATABASE_USER xxx # ENV OSMRO_DATABASE_PASSWORD xxx # message ENV OSMRO_MESSAGE_DRIVER kafka ENV OSMRO_MESSAGE_HOST kafka ENV OSMRO_MESSAGE_PORT 9092 # logs ENV OSMRO_LOG_LEVEL INFO HEALTHCHECK --start-period=130s --interval=10s --timeout=5s --retries=12 \ CMD curl --silent --fail http://localhost:9090/ro || exit 1 # CMD curl --silent --fail localhost:9090/openmano/tenants || exit 1 # CMD /usr/bin/RO-start.sh CMD python3 -m osm_ng_ro.ro_main