X-Git-Url: https://gerrit.o-ran-sc.org/r/gitweb?a=blobdiff_plain;f=ntsimulator%2Fdeploy%2FDockerfile;h=4e81018f53e6001673f5fc1b15b2c701d110a877;hb=a349a45f3940a0d04f6052faadf809fdc9bf4137;hp=f1234f291381da34e282fd13d8169682c3e10b1f;hpb=0f82040e36cac5066e0d91572e14dc4dfa9cc7af;p=sim%2Fo1-interface.git diff --git a/ntsimulator/deploy/Dockerfile b/ntsimulator/deploy/Dockerfile index f1234f2..4e81018 100644 --- a/ntsimulator/deploy/Dockerfile +++ b/ntsimulator/deploy/Dockerfile @@ -1,3 +1,19 @@ +################################################################################ +# +# Copyright 2019 highstreet technologies GmbH and others +# +# 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 alexandru.stancu@highstreet-technologies.com @@ -128,7 +144,7 @@ RUN \ cd pyang && python setup.py build && python setup.py install #NTSimulator Manager - notifications -COPY ./ntsimulator /opt/dev/ntsimulator +COPY . /opt/dev/ntsimulator RUN \ cd /opt/dev && \ cd ntsimulator && mkdir build && cd build && \ @@ -136,11 +152,11 @@ RUN \ make -j2&& \ make install -COPY ntsimulator/deploy/supervisord.conf /etc/supervisord.conf +COPY deploy/supervisord.conf /etc/supervisord.conf -COPY ./ntsimulator/scripts/tls /home/netconf/.ssh +COPY ./scripts/tls /home/netconf/.ssh -COPY ./ntsimulator/yang /opt/dev/yang +COPY ./yang /opt/dev/yang WORKDIR /opt/dev RUN \ cd yang && \