From: Alex Stancu Date: Fri, 15 Nov 2019 16:48:59 +0000 (+0200) Subject: Fix LF CI integration. X-Git-Tag: 0.0.1~1 X-Git-Url: https://gerrit.o-ran-sc.org/r/gitweb?p=sim%2Fo1-interface.git;a=commitdiff_plain;h=a349a45f3940a0d04f6052faadf809fdc9bf4137;hp=b4dd14f8579e67e0d7b416a138d985c899647578 Fix LF CI integration. Signed-off-by: Alex Stancu Change-Id: I077140da88f05ee821ebf1b701dd933f8d903399 --- diff --git a/ntsimulator/deploy/Dockerfile b/ntsimulator/deploy/Dockerfile index eee8952..4e81018 100644 --- a/ntsimulator/deploy/Dockerfile +++ b/ntsimulator/deploy/Dockerfile @@ -144,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 && \ @@ -152,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 && \ diff --git a/ntsimulator/deploy/manager/Dockerfile b/ntsimulator/deploy/manager/Dockerfile index 61c6040..72395be 100644 --- a/ntsimulator/deploy/manager/Dockerfile +++ b/ntsimulator/deploy/manager/Dockerfile @@ -139,7 +139,7 @@ RUN \ make install #NTSimulator Manager -COPY ./ntsimulator /opt/dev/ntsimulator +COPY . /opt/dev/ntsimulator RUN \ cd /opt/dev && \ cd ntsimulator && mkdir build && cd build && \ @@ -147,7 +147,7 @@ RUN \ make -j2 && \ make install -COPY ntsimulator/deploy/manager/supervisord.conf.manager /etc/supervisord.conf +COPY deploy/manager/supervisord.conf.manager /etc/supervisord.conf ENV EDITOR vim EXPOSE 830