Fix LF CI integration. 16/1616/1
authorAlex Stancu <alexandru.stancu@highstreet-technologies.com>
Fri, 15 Nov 2019 16:48:59 +0000 (18:48 +0200)
committerAlex Stancu <alexandru.stancu@highstreet-technologies.com>
Fri, 15 Nov 2019 16:48:59 +0000 (18:48 +0200)
Signed-off-by: Alex Stancu <alexandru.stancu@highstreet-technologies.com>
Change-Id: I077140da88f05ee821ebf1b701dd933f8d903399

ntsimulator/deploy/Dockerfile
ntsimulator/deploy/manager/Dockerfile

index eee8952..4e81018 100644 (file)
@@ -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 && \
index 61c6040..72395be 100644 (file)
@@ -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