X-Git-Url: https://osm.etsi.org/gitweb/?p=osm%2FNBI.git;a=blobdiff_plain;f=Dockerfile.local;h=154e4ae7b0f26f11eef20940c96034783450f120;hp=57b0f2277ec9415fbb938715c52c58b26b4954da;hb=refs%2Fchanges%2F59%2F6159%2F5;hpb=c678d0437930098277ab67a2b7bacee4ed283842 diff --git a/Dockerfile.local b/Dockerfile.local index 57b0f22..154e4ae 100644 --- a/Dockerfile.local +++ b/Dockerfile.local @@ -1,3 +1,5 @@ +# This creates osm/NBI docker from local NBI source code + FROM ubuntu:16.04 # Set the working directory to /app @@ -6,11 +8,16 @@ WORKDIR /app/osm_nbi # Copy the current directory contents into the container at /app ADD . /app -RUN apt-get update && apt-get -y install git python3 python3-jsonschema \ +RUN apt-get update && apt-get install -y git python3 python3-jsonschema \ python3-cherrypy3 python3-pymongo python3-yaml python3-pip \ && pip3 install pip==9.0.3 \ && pip3 install aiokafka \ && mkdir -p /app/storage/kafka && mkdir -p /app/log +RUN git clone https://osm.etsi.org/gerrit/osm/common.git \ + && cd common && python3 setup.py develop && cd .. +# && pip3 install -U -r requirements.txt \ +# && cd .. + EXPOSE 9999 @@ -44,6 +51,9 @@ ENV OSMNBI_LOG_LEVEL DEBUG ENV OSMNBI_MESSAGE_DRIVER kafka ENV OSMNBI_MESSAGE_HOST kafka ENV OSMNBI_MESSAGE_PORT 9092 +# logs +ENV OSMNBI_LOG_FILE /app/log/nbi.log +ENV OSMNBI_LOG_LEVEL DEBUG # Run app.py when the container launches CMD ["python3", "nbi.py"]