X-Git-Url: https://osm.etsi.org/gitweb/?p=osm%2FNBI.git;a=blobdiff_plain;f=Dockerfile.local;h=0794a27ae1c2acbb9bd441269a2ebed37d617e7a;hp=b96d9181ba38b6cc9176638791f676a6ef9ac150;hb=b995ea260a3a2f88a4e041c7e2dd745daee91825;hpb=7e0eb1359144e47425da40504350f0d7cdc408e4 diff --git a/Dockerfile.local b/Dockerfile.local index b96d918..0794a27 100644 --- a/Dockerfile.local +++ b/Dockerfile.local @@ -13,37 +13,30 @@ # This creates osm/NBI docker from local NBI source code -FROM ubuntu:16.04 +FROM ubuntu:18.04 # Set the working directory to /app WORKDIR /app/NBI -RUN apt-get update && apt-get install -y git python3 python3-jsonschema \ +RUN echo 'debconf debconf/frontend select Noninteractive' | debconf-set-selections + +RUN apt-get update && apt-get install -y git python3 \ python3-pymongo python3-yaml python3-pip python3-keystoneclient \ - && pip3 install pip==9.0.3 \ - && pip3 install aiokafka aiohttp cherrypy==18.1.2 keystoneauth1 requests \ + && python3 -m pip install pip --upgrade \ + && python3 -m pip install aiokafka dataclasses aiohttp cherrypy==18.1.2 keystoneauth1 requests jsonschema==3.2.0 \ + && python3 -m pip install tacacs_plus \ && mkdir -p /app/storage/kafka && mkdir -p /app/log # OSM_COMMON RUN git -C /app clone https://osm.etsi.org/gerrit/osm/common.git \ - && pip3 install -e /app/common + && python3 -m pip install -e /app/common # && cd common && python3 setup.py develop && cd .. # && pip3 install -U -r requirements.txt \ # && cd .. # OSM_IM -RUN pip3 install pyang && mkdir -p /app && cd /app \ - && git -C /app clone https://github.com/robshakir/pyangbind \ - && pip3 install -e /app/pyangbind \ - && git -C /app clone https://osm.etsi.org/gerrit/osm/IM \ - && mkdir -p /app/IM/osm_im \ - && pyang --plugindir /app/pyangbind/pyangbind/plugin -f pybind -p /app/IM/models/yang \ - -o /app/IM/osm_im/vnfd.py /app/IM/models/yang/vnfd.yang \ - && pyang --plugindir /app/pyangbind/pyangbind/plugin -f pybind -p /app/IM/models/yang \ - -o /app/IM/osm_im/nsd.py /app/IM/models/yang/nsd.yang \ - && pyang --plugindir /app/pyangbind/pyangbind/plugin -f pybind -p /app/IM/models/yang \ - -o /app/IM/osm_im/nst.py /app/IM/models/yang/nst.yang \ - && pip3 install -e /app/IM +RUN git -C /app clone https://osm.etsi.org/gerrit/osm/IM \ + && python3 -m pip install /app/IM EXPOSE 9999 @@ -81,6 +74,8 @@ ENV OSMNBI_STATIC_DIR /app/NBI/osm_nbi/html_public # logs # ENV OSMNBI_LOG_FILE /app/log/nbi.log ENV OSMNBI_LOG_LEVEL DEBUG +# ENV OSMNBI_SERVER_ENABLE_TEST False + # message ENV OSMNBI_MESSAGE_DRIVER kafka ENV OSMNBI_MESSAGE_HOST kafka @@ -88,8 +83,13 @@ ENV OSMNBI_MESSAGE_PORT 9092 # authentication ENV OSMNBI_AUTHENTICATION_BACKEND internal #ENV OSMNBI_AUTHENTICATION_BACKEND keystone -#ENV OSMNBI_AUTHENTICATION_AUTH_URL keystone +#ENV OSMNBI_AUTHENTICATION_AUTH_URL http://keystone:5000/v3 #ENV OSMNBI_AUTHENTICATION_AUTH_PORT 5000 + +# DOMAIN_NAME can be a single value or a comma separated list of values. The first value is for internal domain +# meanwhile the rest ones are external identity services as e.g. LDAP +# for the case of USER_DOMAIN_NAME each item can be suffixed with ":ro" (read only). In this case NBI will reject any +# operationi of create/update/delete users in this domain. Do not suffix PROJECT_DOMAIN_NAME #ENV OSMNBI_AUTHENTICATION_USER_DOMAIN_NAME default #ENV OSMNBI_AUTHENTICATION_PROJECT_DOMAIN_NAME default #ENV OSMNBI_AUTHENTICATION_SERVICE_USERNAME nbi @@ -106,5 +106,5 @@ ENV OSMNBI_PROMETHEUS_PORT 9090 ADD . /app/NBI # Run app.py when the container launches -CMD python3 -m osm_nbi.nbi +CMD ["python3", "-m", "osm_nbi.nbi"]